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