Antoine Levy-Lambert wrote:
Isn't there a danger in using a non-synchronized class ? Otherwise I can gladly switch to ArrayList. Antoine
There are wrappers for that (Collections.synchronizedXXX(XXX xxx) XXX = Collection , List, Map, Set, SortedMap or SortedSet. So that should not be an issue. (That is, if synchronization is an issue)
Sync is not usually an issue in Ant tasks, except for the parallel bits. The other issue w/ Vector is, like ArrayList, it is most efficient if you know how big the vector will be. If you dont know till you build the structure up, LinkedList can be more efficient
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]