Rename getFiles method to getFilesToProcess

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@168475 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2005-05-06 00:16:12 +00:00
parent e194597243
commit aca1a272b8
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ public class PmdReport
List files; List files;
try try
{ {
files = getFiles( "**/*.java", null ); files = getFilesToProcess( "**/*.java", null );
} }
catch( IOException e ) catch( IOException e )
{ {
@ -154,7 +154,7 @@ public class PmdReport
return "pmd"; return "pmd";
} }
private List getFiles( String includes, String excludes ) private List getFilesToProcess( String includes, String excludes )
throws IOException throws IOException
{ {
StringBuffer excludesStr = new StringBuffer(); StringBuffer excludesStr = new StringBuffer();