diff options
author | peterkittreilly <[email protected]> | 2006-10-10 21:09:35 +0000 |
---|---|---|
committer | peterkittreilly <[email protected]> | 2006-10-10 21:09:35 +0000 |
commit | 549e6a7ebcfd11570cecb48b81557446ca5a18ae (patch) | |
tree | 43c24ef61ac3b36134752e47e56d0614881d4e36 | |
parent | 91c3ef383a9eb92301d40d26634a2f932ae89c6a (diff) |
native eol-stype
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@51 32d7a393-a5a9-423c-abd3-5d954feb1f2f
-rw-r--r-- | test/resources/logic/for.xml | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/test/resources/logic/for.xml b/test/resources/logic/for.xml index 3c25545..d4a25da 100644 --- a/test/resources/logic/for.xml +++ b/test/resources/logic/for.xml @@ -1,24 +1,24 @@ -<project>
- <target name="init">
- <taskdef resource="net/sf/antcontrib/antlib.xml">
- <classpath location="${antcontrib.jar}"/>
- </taskdef>
- </target>
-
- <target name="loop" depends="init">
- <for param="i" end="10">
- <sequential>
- <echo>i is @{i}</echo>
- </sequential>
- </for>
- </target>
-
- <target name="step" depends="init">
- <for param="i" end="0" begin="10" step="-2">
- <sequential>
- <echo>i is @{i}</echo>
- </sequential>
- </for>
- </target>
-
-</project>
+<project> + <target name="init"> + <taskdef resource="net/sf/antcontrib/antlib.xml"> + <classpath location="${antcontrib.jar}"/> + </taskdef> + </target> + + <target name="loop" depends="init"> + <for param="i" end="10"> + <sequential> + <echo>i is @{i}</echo> + </sequential> + </for> + </target> + + <target name="step" depends="init"> + <for param="i" end="0" begin="10" step="-2"> + <sequential> + <echo>i is @{i}</echo> + </sequential> + </for> + </target> + +</project> |