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 12:01:16 UTC

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

Author: simonetripodi
Date: Tue Jun 14 10:01:16 2011
New Revision: 1135449

URL: http://svn.apache.org/viewvc?rev=1135449&view=rev
Log:
removed abuse of 'this' keyword

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

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java?rev=1135449&r1=1135448&r2=1135449&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java Tue Jun 14 10:01:16 2011
@@ -59,9 +59,9 @@ final class ClassPathHandler
      */
     public void doHandle( String path, Class<?> classPathEntry )
     {
-        if ( this.filter.matches( classPathEntry ) )
+        if ( filter.matches( classPathEntry ) )
         {
-            for ( ClassPathEntryHandler classHandler : this.classHandlers )
+            for ( ClassPathEntryHandler classHandler : classHandlers )
             {
                 classHandler.doHandle( path, classPathEntry );
             }