Re: Date concurrency

2010-08-18 Thread Andrey Pavlenko
I would suggest to use ThreadLocal instead of overriding SimpleDateFormat. Something like this: private static final ThreadLocal LOCAL_DATE_FORMAT = new ThreadLocal() { protected Object initialValue() { return new SimpleDateFormat("MMddHHmmss"); }; }; p

New task contribution

2010-08-13 Thread Andrey Pavlenko
Hi all, I would like to contribute a task which, in my opinion, might be very helpful for many people. The sources and documentation are located here: http://tools4j.googlecode.com/files/batchant.zip. Cut from documentation: This task is very similar to Subant but has the following features adde