Skip to content

Commit 17a8c1a

Browse files
committed
Refactoring.
1 parent 65d9f2f commit 17a8c1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/Unity.Mvvm.Counter/Assets/Scripts/AppContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void Construct()
2323
RegisterInstance(new CounterViewModel());
2424
RegisterInstance<IDataStoreService>(new DataStoreService(this));
2525
RegisterInstance<IBindableElementsWrapper>(new CounterBindableElementsWrapper());
26-
RegisterInstance(GetValueConverters());
26+
RegisterInstance(GetConverters());
2727
}
2828

2929
public T Resolve<T>()
@@ -36,7 +36,7 @@ private void RegisterInstance<T>(T instance)
3636
_registeredTypes.Add(typeof(T), instance);
3737
}
3838

39-
private IConverter[] GetValueConverters()
39+
private IConverter[] GetConverters()
4040
{
4141
return new IConverter[]
4242
{

0 commit comments

Comments
 (0)