Skip to content

Commit

Permalink
Merge pull request #19 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Version 0.1.6
  • Loading branch information
OpOpYaDev authored and OpOpYaDev committed May 15, 2024
1 parent 0716ade commit e8ce6cc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace Better.Locators.Runtime
{
public static class ILocatorExtension
public static class ILocatorExtensions
{
public static bool TryGet<TBase, TItem>(this ILocator<TBase> self, out TItem item)
where TItem : TBase
Expand Down
3 changes: 0 additions & 3 deletions Runtime/Locators/Implementations/InternalLocator.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Better.Commons.Runtime.Utility;
using Better.Locators.Runtime.Awaiters;

namespace Better.Locators.Runtime
{
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Locators/Implementations/PocoLocator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public abstract class PocoLocator<TItem> : ILocator<TItem>
{
protected ILocator<TItem> _internalLocator;

protected PocoLocator()
public PocoLocator()
{
_internalLocator = new InternalLocator<TItem>();
}
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.locators",
"displayName": "Better Locators",
"version": "0.1.5",
"version": "0.1.6",
"unity": "2021.3",
"description": " ",
"dependencies": {
Expand Down

0 comments on commit e8ce6cc

Please sign in to comment.