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:58:53 UTC

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

Author: simonetripodi
Date: Mon Jun 13 20:58:53 2011
New Revision: 1135280

URL: http://svn.apache.org/viewvc?rev=1135280&view=rev
Log:
ifMatches() method made protected, no needs to have it public, it is enough subclass can access to it

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=1135280&r1=1135279&r2=1135280&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:58:53 2011
@@ -47,7 +47,7 @@ public abstract class AbstractHandlerCon
         }
     }
 
-    public LinkedHandlerBuilder ifMatches( Filter filter )
+    protected LinkedHandlerBuilder ifMatches( Filter filter )
     {
         return wrapped.ifMatches( filter );
     }