Skip to content

Commit

Permalink
Merge pull request #6 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Fixes 0.0.7
  • Loading branch information
OpOpYaDev committed Mar 7, 2024
1 parent 58a2105 commit d504b7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Runtime/Installers/Services/ServicesInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public override async Task InstallBindingsAsync(CancellationToken cancellationTo

for (int i = 0; i < _services.Length; i++)
{
ServiceLocator.RegisterService(_services[i]);
ServiceLocator.Register(_services[i]);
}

await _services.Select(x => x.PostInitializeAsync(cancellationToken)).WhenAll();
Expand All @@ -37,7 +37,7 @@ public override void UninstallBindings()
{
for (int i = 0; i < _services.Length; i++)
{
ServiceLocator.UnregisterService<IService>(_services[i]);
ServiceLocator.Unregister<IService>(_services[i]);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.tdw.better.locator",
"displayName": "Better Locator",
"version": "0.0.6",
"version": "0.0.7",
"unity": "2021.3",
"description": " ",
"dependencies": {
Expand Down

0 comments on commit d504b7e

Please sign in to comment.