diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-14 11:27:29 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-14 11:27:29 +1300 |
commit | 503e44d8484fcbc61a341f35e7900def94553106 (patch) | |
tree | 3ba95c99912ab53ad2787e93258c8edbe23ac2c4 /src/org/traccar/protocol/GatorProtocolDecoder.java | |
parent | 766064092ca4f85eacfa741e1ff772ea5b981d1a (diff) | |
download | trackermap-server-503e44d8484fcbc61a341f35e7900def94553106.tar.gz trackermap-server-503e44d8484fcbc61a341f35e7900def94553106.tar.bz2 trackermap-server-503e44d8484fcbc61a341f35e7900def94553106.zip |
More check style issues clean up
Diffstat (limited to 'src/org/traccar/protocol/GatorProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/GatorProtocolDecoder.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/GatorProtocolDecoder.java b/src/org/traccar/protocol/GatorProtocolDecoder.java index 2dfc2e56a..b8431003b 100644 --- a/src/org/traccar/protocol/GatorProtocolDecoder.java +++ b/src/org/traccar/protocol/GatorProtocolDecoder.java @@ -63,10 +63,8 @@ public class GatorProtocolDecoder extends BaseProtocolDecoder { buf.readUnsignedByte(), buf.readUnsignedByte()); id = id.replaceFirst("^0+(?!$)", ""); - if (type == MSG_POSITION_DATA || - type == MSG_ROLLCALL_RESPONSE || - type == MSG_ALARM_DATA || - type == MSG_BLIND_AREA) { + if (type == MSG_POSITION_DATA || type == MSG_ROLLCALL_RESPONSE + || type == MSG_ALARM_DATA || type == MSG_BLIND_AREA) { // Create new position Position position = new Position(); |