Browse Source

Same attributes names as in ant1.6

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273722 13f79535-47bb-0310-9956-ffa450edef68
master
Costin Manolache 22 years ago
parent
commit
e47e65c611
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      proposal/embed/src/java/org/apache/tools/ant/taskdefs/SystemPath.java

+ 5
- 1
proposal/embed/src/java/org/apache/tools/ant/taskdefs/SystemPath.java View File

@@ -106,9 +106,13 @@ public class SystemPath extends Task {
public SystemPath() { public SystemPath() {
} }


public void setPathRef( Reference pathRef ) throws BuildException {
setClasspathRef( pathRef );
}

/** Specify which path will be used. /** Specify which path will be used.
*/ */
public void setPathRef( Reference pathRef ) throws BuildException {
public void setClasspathRef( Reference pathRef ) throws BuildException {
Path path=(Path)pathRef.getReferencedObject(project); Path path=(Path)pathRef.getReferencedObject(project);


initSystemLoader(path); initSystemLoader(path);


Loading…
Cancel
Save