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/14 14:21:45 UTC

svn commit: r1135522 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/Filters.java

Author: simonetripodi
Date: Tue Jun 14 12:21:44 2011
New Revision: 1135522

URL: http://svn.apache.org/viewvc?rev=1135522&view=rev
Log:
stripped the -Filter postfix, the ClassNameMatches was the only one on having it

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

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/Filters.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/Filters.java?rev=1135522&r1=1135521&r2=1135522&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/Filters.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/Filters.java Tue Jun 14 12:21:44 2011
@@ -123,7 +123,7 @@ public final class Filters
             throw new IllegalArgumentException( "Empty 'regex' not allowed" );
         }
 
-        return new ClassNameMatchesFilter( regex );
+        return new ClassNameMatches( regex );
     }
 
     /**