As far as I know: yes!
-----Ursprüngliche Nachricht-----
Von: Steve Amerige [mailto:[email protected]]
Gesendet: Montag, 25. Juli 2011 22:25
An: Ant Users List
Betreff: Is <sequential> required within a <for> block?
An easy question, I hope:
Is <sequential> required within a <for> block?
Assume that there is only one thread, that <parallel> is not being used, etc.
Enjoy,
Steve Amerige
SAS Institute, Deployment Software Development
<for list="a,b,c" param="letter">
<sequential>
<echo>Letter @{letter}</echo>
</sequential>
</for>
vs:
<for list="a,b,c" param="letter">
<echo>Letter @{letter}</echo>
</for>