diff --git a/src/main/org/apache/tools/ant/Executor.java b/src/main/org/apache/tools/ant/Executor.java index 7eb744633..6d92e7e4d 100755 --- a/src/main/org/apache/tools/ant/Executor.java +++ b/src/main/org/apache/tools/ant/Executor.java @@ -27,7 +27,7 @@ public interface Executor { /** * Execute the specified Targets for the specified Project. * @param project the Ant Project. - * @param targetNames String[] of Target names. + * @param targetNames String[] of Target names as specified on the command line. * @throws BuildException on error */ void executeTargets(Project project, String[] targetNames) diff --git a/src/tests/junit/org/apache/tools/ant/BuildFileTest.java b/src/tests/junit/org/apache/tools/ant/BuildFileTest.java index 3e84fd464..18ae9bd27 100644 --- a/src/tests/junit/org/apache/tools/ant/BuildFileTest.java +++ b/src/tests/junit/org/apache/tools/ant/BuildFileTest.java @@ -91,7 +91,7 @@ public abstract class BuildFileTest extends TestCase { * @param target target to run * @param cause information string to reader of report */ - public void expectBuildException(String target, String cause) { + public void expectBuildException(String target, String cause) { expectSpecificBuildException(target, cause, null); } @@ -167,7 +167,7 @@ public abstract class BuildFileTest extends TestCase { * @pre logBuffer!=null * @return The log value */ - public String getLog() { + public String getLog() { return logBuffer.toString(); }