Browse Source

Opened up access to the topological sort code so a list targets that

must be called to fulfill a specific target can be determined.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268247 13f79535-47bb-0310-9956-ffa450edef68
master
metasim 24 years ago
parent
commit
04cf5e0186
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/Project.java

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

@@ -836,7 +836,7 @@ public class Project {
* @exception BuildException if there is a cyclic dependency among the
* Targets, or if a Target does not exist.
*/
private final Vector topoSort(String root, Hashtable targets)
public final Vector topoSort(String root, Hashtable targets)
throws BuildException {
Vector ret = new Vector();
Hashtable state = new Hashtable();


Loading…
Cancel
Save