From 28ed925ab358c0db24f779c0574c4dba3c63d326 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 8 Oct 2021 22:54:02 -0700 Subject: Revert "Add modular response" This reverts commit 2bae9c0587249e5281ea090ec8f3a3f22ed7ed0e. --- src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java') diff --git a/src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java b/src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java index 47c422907..b313802b3 100644 --- a/src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java +++ b/src/main/java/org/traccar/protocol/Gt06ProtocolDecoder.java @@ -1143,7 +1143,7 @@ public class Gt06ProtocolDecoder extends BaseProtocolDecoder { sendResponse(channel, true, type, buf.getShort(buf.writerIndex() - 6), null); - return decodeExtendedModular(channel, buf, deviceSession); + return decodeExtendedModular(buf, deviceSession); } else { @@ -1154,7 +1154,7 @@ public class Gt06ProtocolDecoder extends BaseProtocolDecoder { return null; } - private Object decodeExtendedModular(Channel channel, ByteBuf buf, DeviceSession deviceSession) { + private Object decodeExtendedModular(ByteBuf buf, DeviceSession deviceSession) { Position position = new Position(getProtocolName()); position.setDeviceId(deviceSession.getDeviceId()); @@ -1255,8 +1255,6 @@ public class Gt06ProtocolDecoder extends BaseProtocolDecoder { } } - sendResponse(channel, true, MSG_GPS_MODULAR, buf.readUnsignedShort(), null); - return position; } -- cgit v1.2.3