aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/GatorProtocolDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2014-04-08 20:27:27 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2014-04-08 20:27:27 +1200
commit53672c02969da6208a92c43059147ca3c5d8653a (patch)
treea14300850ca3c24ee0dbab11e0056d43cdbf992f /src/org/traccar/protocol/GatorProtocolDecoder.java
parent91a9a07188bf919f8ec92b139623dbd300e4f359 (diff)
downloadtraccar-server-53672c02969da6208a92c43059147ca3c5d8653a.tar.gz
traccar-server-53672c02969da6208a92c43059147ca3c5d8653a.tar.bz2
traccar-server-53672c02969da6208a92c43059147ca3c5d8653a.zip
Replace HOUR with HOUR_OF_DAY
Diffstat (limited to 'src/org/traccar/protocol/GatorProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/GatorProtocolDecoder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/GatorProtocolDecoder.java b/src/org/traccar/protocol/GatorProtocolDecoder.java
index b2baf455a..15a46d375 100644
--- a/src/org/traccar/protocol/GatorProtocolDecoder.java
+++ b/src/org/traccar/protocol/GatorProtocolDecoder.java
@@ -81,7 +81,7 @@ public class GatorProtocolDecoder extends BaseProtocolDecoder {
time.set(Calendar.YEAR, 2000 + ChannelBufferTools.readHexInteger(buf, 2));
time.set(Calendar.MONTH, ChannelBufferTools.readHexInteger(buf, 2) - 1);
time.set(Calendar.DAY_OF_MONTH, ChannelBufferTools.readHexInteger(buf, 2));
- time.set(Calendar.HOUR, ChannelBufferTools.readHexInteger(buf, 2));
+ time.set(Calendar.HOUR_OF_DAY, ChannelBufferTools.readHexInteger(buf, 2));
time.set(Calendar.MINUTE, ChannelBufferTools.readHexInteger(buf, 2));
time.set(Calendar.SECOND, ChannelBufferTools.readHexInteger(buf, 2));
position.setTime(time.getTime());