Skip to content

Commit

Permalink
Fixes 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
OpOpYaDev committed Mar 7, 2024
1 parent 1147ba1 commit 08d555c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 Assets/BetterLocators/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 08d555c

Please sign in to comment.