Browse Source

* update javadoc

* remove double blanks

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@605926 13f79535-47bb-0310-9956-ffa450edef68
master
Jan Materne 17 years ago
parent
commit
ad6b39a620
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/Executor.java
  2. +2
    -2
      src/tests/junit/org/apache/tools/ant/BuildFileTest.java

+ 1
- 1
src/main/org/apache/tools/ant/Executor.java View File

@@ -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)


+ 2
- 2
src/tests/junit/org/apache/tools/ant/BuildFileTest.java View File

@@ -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();
}



Loading…
Cancel
Save