From 42406b4d6a32db0d438447a5fce114669810d746 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 27 Apr 2015 12:12:41 +1200 Subject: Remove unnecessary default values --- src/org/traccar/protocol/GatorProtocolDecoder.java | 1 - 1 file changed, 1 deletion(-) (limited to 'src/org/traccar/protocol/GatorProtocolDecoder.java') diff --git a/src/org/traccar/protocol/GatorProtocolDecoder.java b/src/org/traccar/protocol/GatorProtocolDecoder.java index 33b8c501c..42dbb8cc9 100644 --- a/src/org/traccar/protocol/GatorProtocolDecoder.java +++ b/src/org/traccar/protocol/GatorProtocolDecoder.java @@ -96,7 +96,6 @@ public class GatorProtocolDecoder extends BaseProtocolDecoder { position.setLongitude(ChannelBufferTools.readCoordinate(buf)); position.setSpeed(ChannelBufferTools.readHexInteger(buf, 4) * 0.539957); position.setCourse((double) ChannelBufferTools.readHexInteger(buf, 4)); - position.setAltitude(0.0); // Flags int flags = buf.readUnsignedByte(); -- cgit v1.2.3