Browse Source

Updated example to match the implementation.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267815 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 25 years ago
parent
commit
1b25a5ab79
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/main/org/apache/tools/ant/taskdefs/CallTarget.java

+ 4
- 4
src/main/org/apache/tools/ant/taskdefs/CallTarget.java View File

@@ -61,10 +61,10 @@ import org.apache.tools.ant.*;
*
* <pre>
* <target name="foo">
* <calltarget target="bar">
* <property name="property1" value="aaaaa" />
* <property name="foo" value="baz" />
* </calltarget>
* <antcall target="bar">
* <param name="property1" value="aaaaa" />
* <param name="foo" value="baz" />
* </antcall>
* </target>
*
* <target name="bar" depends="init">


Loading…
Cancel
Save