use timestamp instead of dateformat (yyyy-MM-dd HH-mm-ss)

This commit is contained in:
Sebastian Sdorra
2011-04-04 16:11:01 +02:00
parent 3a23add393
commit 2396430431
14 changed files with 310 additions and 37 deletions

View File

@@ -36,7 +36,6 @@ package sonia.scm.group.xml;
//~--- non-JDK imports --------------------------------------------------------
import sonia.scm.group.Group;
import sonia.scm.xml.XmlTimestampDateAdapter;
//~--- JDK imports ------------------------------------------------------------
@@ -185,7 +184,6 @@ public class XmlGroupDatabase
//~--- fields ---------------------------------------------------------------
/** Field description */
@XmlJavaTypeAdapter(XmlTimestampDateAdapter.class)
private Long creationTime;
/** Field description */
@@ -194,6 +192,5 @@ public class XmlGroupDatabase
private Map<String, Group> groupMap = new LinkedHashMap<String, Group>();
/** Field description */
@XmlJavaTypeAdapter(XmlTimestampDateAdapter.class)
private Long lastModified;
}