You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/13 22:56:04 UTC

svn commit: r1135276 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java

Author: simonetripodi
Date: Mon Jun 13 20:56:03 2011
New Revision: 1135276

URL: http://svn.apache.org/viewvc?rev=1135276&view=rev
Log:
minor internals polishing

Modified:
    commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java?rev=1135276&r1=1135275&r2=1135276&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/AbstractHandlerConfiguration.java Mon Jun 13 20:56:03 2011
@@ -30,13 +30,16 @@ public abstract class AbstractHandlerCon
 
     private Matcher wrapped;
 
+    /**
+     * {@inheritDoc}
+     */
     public final void configure( final Matcher matcher )
     {
         this.wrapped = matcher;
 
         try
         {
-            this.configure();
+            configure();
         }
         finally
         {
@@ -46,7 +49,7 @@ public abstract class AbstractHandlerCon
 
     public LinkedHandlerBuilder ifMatches( Filter filter )
     {
-        return this.wrapped.ifMatches( filter );
+        return wrapped.ifMatches( filter );
     }
 
     public abstract void configure();