Author: simonetripodi
Date: Sun Nov 20 19:24:40 2011
New Revision: 1204220

URL: http://svn.apache.org/viewvc?rev=1204220&view=rev
Log:
no configuration methods are overridable, except the `configure()` method

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=1204220&r1=1204219&r2=1204220&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
 Sun Nov 20 19:24:40 2011
@@ -65,7 +65,7 @@ public abstract class AbstractHandlerCon
      * @return the {@link ClassPathEntryHandler} builder
      * @see Matcher#ifMatches(Filter)
      */
-    protected LinkedHandlerBuilder ifMatches( final Filter filter )
+    protected final LinkedHandlerBuilder ifMatches( final Filter filter )
     {
         if ( filter == null )
         {
@@ -366,7 +366,7 @@ public abstract class AbstractHandlerCon
      *
      * @return the configured {@link ClassPathHandler}s storage.
      */
-    Collection<ClassPathHandler> getHandlers()
+    final Collection<ClassPathHandler> getHandlers()
     {
         return handlers;
     }


Reply via email to