diff --git a/bds/source/java/ch/systemsx/cisd/bds/Constants.java b/bds/source/java/ch/systemsx/cisd/bds/Constants.java index ff63810174f1b30a5ed2101e78584c12042c124c..650dbd33f11c351bce20cc89ea0bb3cbe6eddd19 100644 --- a/bds/source/java/ch/systemsx/cisd/bds/Constants.java +++ b/bds/source/java/ch/systemsx/cisd/bds/Constants.java @@ -18,7 +18,6 @@ package ch.systemsx.cisd.bds; import java.text.DateFormat; import java.text.SimpleDateFormat; -import java.util.concurrent.atomic.AtomicReference; /** * Some constants used inside the <i>BDS</i> library @@ -35,8 +34,16 @@ public final class Constants public final static char PATH_SEPARATOR = '/'; /** The uniformly date format used. */ - public static final AtomicReference<DateFormat> DATE_FORMAT = - new AtomicReference<DateFormat>(new SimpleDateFormat(DATE_FORMAT_PATTERN)); + // Note that DateFormats objects are not thread-safe. + public static final ThreadLocal<DateFormat> DATE_FORMAT = + new ThreadLocal<DateFormat>() + { + @Override + protected DateFormat initialValue() + { + return new SimpleDateFormat(DATE_FORMAT_PATTERN); + } + }; private Constants() {