Skip to content

Commit

Permalink
Fixed compile warning, incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
svermeulen committed Feb 7, 2016
1 parent 516e99b commit c3260b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ namespace Zenject
public class MethodSingletonProviderCreator
{
readonly Dictionary<SingletonId, IMethodSingletonLazyCreator> _creators = new Dictionary<SingletonId, IMethodSingletonLazyCreator>();
readonly DiContainer _container;
readonly SingletonRegistry _singletonRegistry;

public MethodSingletonProviderCreator(
DiContainer container, SingletonRegistry singletonRegistry)
SingletonRegistry singletonRegistry)
{
_container = container;
_singletonRegistry = singletonRegistry;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public SingletonProviderCreator(
DiContainer container, SingletonRegistry singletonRegistry)
{
_typeSingletonProviderCreator = new TypeSingletonProviderCreator(container, singletonRegistry);
_methodSingletonProviderCreator = new MethodSingletonProviderCreator(container, singletonRegistry);
_methodSingletonProviderCreator = new MethodSingletonProviderCreator(singletonRegistry);
_instanceSingletonProviderCreator = new InstanceSingletonProviderCreator(container, singletonRegistry);
_factorySingletonProviderCreator = new FactorySingletonProviderCreator(container, singletonRegistry);

Expand Down
2 changes: 1 addition & 1 deletion UnityProject/Assets/Zenject/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8
3.9

0 comments on commit c3260b3

Please sign in to comment.