diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-03-15 15:23:05 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-03-15 15:23:05 +0100 |
commit | f0f9d39f1d925dd564355b0cf67efe3109ea3b83 (patch) | |
tree | e267fff685d86286b8b12222b2d0afce4c86b1ca /core/src/ch/asynk | |
parent | 62b522407d3fe1295a4db88c82b8a3bf6a002770 (diff) | |
download | RustAndDust-f0f9d39f1d925dd564355b0cf67efe3109ea3b83.zip RustAndDust-f0f9d39f1d925dd564355b0cf67efe3109ea3b83.tar.gz |
DB: fix date format
Diffstat (limited to 'core/src/ch/asynk')
-rw-r--r-- | core/src/ch/asynk/rustanddust/util/DB.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/util/DB.java b/core/src/ch/asynk/rustanddust/util/DB.java index f143585..18ee162 100644 --- a/core/src/ch/asynk/rustanddust/util/DB.java +++ b/core/src/ch/asynk/rustanddust/util/DB.java @@ -19,7 +19,7 @@ public class DB public static final int NO_RECORD = -1; private static final String DIGEST = "SHA-256"; - private static final SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss"); + private static final SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); private boolean debug; private Database db; |