aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/GatorProtocolDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-04-27 12:18:31 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-04-27 12:18:31 +1200
commit27055e0bf5f544552c227da10badff34a71cfb70 (patch)
treefa49594c393e42a1221009c1e6d309b06452e794 /src/org/traccar/protocol/GatorProtocolDecoder.java
parent42406b4d6a32db0d438447a5fce114669810d746 (diff)
downloadtrackermap-server-27055e0bf5f544552c227da10badff34a71cfb70.tar.gz
trackermap-server-27055e0bf5f544552c227da10badff34a71cfb70.tar.bz2
trackermap-server-27055e0bf5f544552c227da10badff34a71cfb70.zip
Remove unnecessary type casts
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 42dbb8cc9..df92f96cb 100644
--- a/src/org/traccar/protocol/GatorProtocolDecoder.java
+++ b/src/org/traccar/protocol/GatorProtocolDecoder.java
@@ -95,7 +95,7 @@ public class GatorProtocolDecoder extends BaseProtocolDecoder {
position.setLatitude(ChannelBufferTools.readCoordinate(buf));
position.setLongitude(ChannelBufferTools.readCoordinate(buf));
position.setSpeed(ChannelBufferTools.readHexInteger(buf, 4) * 0.539957);
- position.setCourse((double) ChannelBufferTools.readHexInteger(buf, 4));
+ position.setCourse(ChannelBufferTools.readHexInteger(buf, 4));
// Flags
int flags = buf.readUnsignedByte();