You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2013/04/25 18:08:03 UTC

svn commit: r1475837 - /commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java

Author: mbenson
Date: Thu Apr 25 16:08:02 2013
New Revision: 1475837

URL: http://svn.apache.org/r1475837
Log:
don't camel-case 'classpath' as the concept is so fundamental to Java as to warrant its being thought of as a word unto itself

Modified:
    commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java

Modified: commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java
URL: http://svn.apache.org/viewvc/commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java?rev=1475837&r1=1475836&r2=1475837&view=diff
==============================================================================
--- commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java (original)
+++ commons/sandbox/weaver/trunk/processor/src/main/java/org/apache/commons/weaver/spi/Cleaner.java Thu Apr 25 16:08:02 2013
@@ -32,11 +32,11 @@ public interface Cleaner {
     /**
      * @see Weaver#configure(List, File, Properties)
      * 
-     * @param classPath the classpath to look up cross-references in during weaving
+     * @param classpath the classpath to look up cross-references in during weaving
      * @param target the File path where the classes to weave reside
      * @param config additional configuration for all plugins.
      */
-    void configure(List<String> classPath, File target, Properties config);
+    void configure(List<String> classpath, File target, Properties config);
 
     /**
      * Get the scan request of this {@link Cleaner}.