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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]