You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/03/11 21:07:09 UTC

svn commit: r1455308 - /incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java

Author: simonetripodi
Date: Mon Mar 11 20:07:09 2013
New Revision: 1455308

URL: http://svn.apache.org/r1455308
Log:
trivial: removed unneeded binder() invocation

Modified:
    incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java

Modified: incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java?rev=1455308&r1=1455307&r2=1455308&view=diff
==============================================================================
--- incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java (original)
+++ incubator/onami/trunk/lifecycle/core/src/main/java/org/apache/onami/lifecycle/core/LifeCycleStageModule.java Mon Mar 11 20:07:09 2013
@@ -124,7 +124,7 @@ public final class LifeCycleStageModule<
     @Override
     protected void configure()
     {
-        binder().bind( type( stager.getStage() ) ).toInstance( stager );
+        bind( type( stager.getStage() ) ).toInstance( stager );
 
         bindListener( getTypeMatcher(), new AbstractMethodTypeListener( getAnnotationTypes() )
         {