From f70716bf3bb8816393303a1acad4fe048077203e Mon Sep 17 00:00:00 2001 From: wisberg Date: Mon, 6 Jan 2003 23:30:18 +0000 Subject: [PATCH] comments only. no build.jar update needed. --- .../internal/tools/ant/taskdefs/AntBuilder.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java b/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java index 030d0a4a6..4549d2004 100644 --- a/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java +++ b/build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java @@ -46,10 +46,17 @@ public class AntBuilder extends Builder { * which in some cases causes the tasks to fail. */ - /** @return a Builder for this project and configuration */ + /** + * Factory for a Builder. + * @param config the String configuration, where only substrings + * "verbose" and "useEclipseCompiles" are significant + * @param project the owning Project for all tasks (not null) + * @param tempDir the File path to a temporary dir for side effects (may be null) + * @return a Builder for this project and configuration + */ public static Builder getBuilder(String config, Project project, File tempDir) { boolean useEclipseCompiles = false; - boolean verbose = false; + boolean verbose = false; if (null != config) { if (-1 != config.indexOf("useEclipseCompiles")) { useEclipseCompiles = true; -- 2.39.5