aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java11
1 files 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;