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
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