mirror of https://github.com/apache/maven.git
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:
parent
e194597243
commit
aca1a272b8
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue