Browse Source

checkstyle

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277454 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 21 years ago
parent
commit
e53070ba35
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/main/org/apache/tools/ant/Project.java

+ 3
- 2
src/main/org/apache/tools/ant/Project.java View File

@@ -1185,6 +1185,7 @@ public class Project {
/**
* Executes a <code>Vector</code> of sorted targets.
* @param sortedTargets the aforementioned <code>Vector</code>.
* @throws BuildException on error.
*/
public void executeSortedTargets(Vector sortedTargets)
throws BuildException {
@@ -1691,7 +1692,7 @@ public class Project {
* @exception BuildException if a non-existent target is specified or if
* a circular dependency is detected.
*/
private final void tsort(String root, Hashtable targets,
private void tsort(String root, Hashtable targets,
Hashtable state, Stack visiting,
Vector ret)
throws BuildException {
@@ -1982,7 +1983,7 @@ public class Project {
}
synchronized (this) {
if (loggingMessage) {
/*
/*
* One of the Listeners has attempted to access
* System.err or System.out.
*


Loading…
Cancel
Save