You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ev...@apache.org on 2005/05/06 02:16:13 UTC

svn commit: r168475 - /maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java

Author: evenisse
Date: Thu May  5 17:16:12 2005
New Revision: 168475

URL: http://svn.apache.org/viewcvs?rev=168475&view=rev
Log:
Rename getFiles method to getFilesToProcess

Modified:
    maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java

Modified: maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java
URL: http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java?rev=168475&r1=168474&r2=168475&view=diff
==============================================================================
--- maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java (original)
+++ maven/components/trunk/sandbox/maven-reports/maven-pmd-plugin/src/main/java/org/apache/maven/plugin/pmd/PmdReport.java Thu May  5 17:16:12 2005
@@ -102,7 +102,7 @@
         List files;
         try
         {
-            files = getFiles( "**/*.java", null );
+            files = getFilesToProcess( "**/*.java", null );
         }
         catch( IOException e )
         {
@@ -154,7 +154,7 @@
         return "pmd";
     }
 
-    private List getFiles( String includes, String excludes )
+    private List getFilesToProcess( String includes, String excludes )
         throws IOException
     {
         StringBuffer excludesStr = new StringBuffer();



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org