diff options
author | jon-stumpf <jon.stumpf@gmail.com> | 2017-03-16 23:35:43 -0400 |
---|---|---|
committer | jon-stumpf <jon.stumpf@gmail.com> | 2017-03-17 13:48:21 -0400 |
commit | 001ee6acf3052fd99970e75a7f55b11332b9442f (patch) | |
tree | 50d6d6d374601b9c0f03224ea7d297707a98d9a5 /src/org/traccar/protocol/GlobalSatProtocolDecoder.java | |
parent | b0fed2ff54b79a47c61e9c6d0ac39963fd4a3a67 (diff) | |
download | trackermap-server-001ee6acf3052fd99970e75a7f55b11332b9442f.tar.gz trackermap-server-001ee6acf3052fd99970e75a7f55b11332b9442f.tar.bz2 trackermap-server-001ee6acf3052fd99970e75a7f55b11332b9442f.zip |
Merged Y4 and Y2 DateTimeFormats, simplifying switch;
Diffstat (limited to 'src/org/traccar/protocol/GlobalSatProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/GlobalSatProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/GlobalSatProtocolDecoder.java b/src/org/traccar/protocol/GlobalSatProtocolDecoder.java index a35cfa761..50d621271 100644 --- a/src/org/traccar/protocol/GlobalSatProtocolDecoder.java +++ b/src/org/traccar/protocol/GlobalSatProtocolDecoder.java @@ -212,7 +212,7 @@ public class GlobalSatProtocolDecoder extends BaseProtocolDecoder { position.setDeviceId(deviceSession.getDeviceId()); position.setValid(!parser.next().equals("1")); - position.setTime(parser.nextDateTime(Parser.DateTimeFormat.DMY2_HMS)); + position.setTime(parser.nextDateTime(Parser.DateTimeFormat.DMY_HMS)); position.setLongitude(parser.nextCoordinate(Parser.CoordinateFormat.HEM_DEG_MIN)); position.setLatitude(parser.nextCoordinate(Parser.CoordinateFormat.HEM_DEG_MIN)); position.setAltitude(parser.nextDouble()); |