From 503e44d8484fcbc61a341f35e7900def94553106 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 14 Oct 2015 11:27:29 +1300 Subject: More check style issues clean up --- src/org/traccar/protocol/GatorProtocolDecoder.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (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 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(); -- cgit v1.2.3