PR: MNG-644

remove deprecated method in mboot

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293333 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-03 13:14:47 +00:00
parent 4b6babfbf7
commit 2056cde772
1 changed files with 1 additions and 9 deletions

View File

@ -19,14 +19,6 @@ public abstract class AbstractCompiler
{
private static String PS = System.getProperty( "path.separator" );
/**
* @deprecated Use getPathString(..) instead.
*/
public String getClasspathString( List pathElements ) throws Exception
{
return getPathString( pathElements );
}
public String getPathString( List pathElements )
throws Exception
{
@ -73,7 +65,7 @@ public abstract class AbstractCompiler
}
else
{
scanner.setIncludes( new String[] { "**/*.java" } );
scanner.setIncludes( new String[]{"**/*.java"} );
}
Set excludes = config.getExcludes();