Browse Source

constant

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@668701 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 17 years ago
parent
commit
97e0129bfd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/main/org/apache/tools/ant/taskdefs/SubAnt.java

+ 3
- 3
src/main/org/apache/tools/ant/taskdefs/SubAnt.java View File

@@ -23,6 +23,7 @@ import java.io.IOException;
import java.util.Vector;
import java.util.Enumeration;

import org.apache.tools.ant.Main;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.BuildException;
@@ -60,14 +61,13 @@ import org.apache.tools.ant.taskdefs.Ant.TargetElement;
* @since Ant1.6
* @ant.task name="subant" category="control"
*/
public class SubAnt
extends Task {
public class SubAnt extends Task {

private Path buildpath;

private Ant ant = null;
private String subTarget = null;
private String antfile = "build.xml";
private String antfile = Main.DEFAULT_BUILD_FILENAME;
private File genericantfile = null;
private boolean verbose = false;
private boolean inheritAll = false;


Loading…
Cancel
Save