From 2056cde772950baa3342edb348c761820a0f2427 Mon Sep 17 00:00:00 2001 From: Brett Leslie Porter Date: Mon, 3 Oct 2005 13:14:47 +0000 Subject: [PATCH] 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 --- .../src/main/java/compile/AbstractCompiler.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/maven-mboot2/src/main/java/compile/AbstractCompiler.java b/maven-mboot2/src/main/java/compile/AbstractCompiler.java index 85744df8c1..0ef477d98f 100644 --- a/maven-mboot2/src/main/java/compile/AbstractCompiler.java +++ b/maven-mboot2/src/main/java/compile/AbstractCompiler.java @@ -18,14 +18,6 @@ public abstract class AbstractCompiler implements Compiler { 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();