From 9d9778d13be1cef31c7891fc9519edfa54efdc2a Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 2 Feb 2019 00:31:18 -0800 Subject: Fix code issues --- src/org/traccar/protocol/CellocatorProtocolDecoder.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/org/traccar/protocol/CellocatorProtocolDecoder.java') diff --git a/src/org/traccar/protocol/CellocatorProtocolDecoder.java b/src/org/traccar/protocol/CellocatorProtocolDecoder.java index 453d8d7e7..d23f76a93 100644 --- a/src/org/traccar/protocol/CellocatorProtocolDecoder.java +++ b/src/org/traccar/protocol/CellocatorProtocolDecoder.java @@ -117,12 +117,7 @@ public class CellocatorProtocolDecoder extends BaseProtocolDecoder { position.set(Position.KEY_STATUS, buf.readUnsignedByte() & 0x0f); - if (alternative) { - buf.readUnsignedByte(); // configuration flags - } else { - buf.readUnsignedByte(); // operator - } - + buf.readUnsignedByte(); // operator / configuration flags buf.readUnsignedByte(); // reason data position.set(Position.KEY_ALARM, decodeAlarm(buf.readUnsignedByte())); -- cgit v1.2.3