From b8b84db2104b26dfeedbe1faaa4a52fef608cd1c Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 7 Oct 2023 06:40:21 +0800 Subject: Inline expression --- src/main/java/org/traccar/protocol/T800xProtocolDecoder.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/java/org/traccar/protocol') diff --git a/src/main/java/org/traccar/protocol/T800xProtocolDecoder.java b/src/main/java/org/traccar/protocol/T800xProtocolDecoder.java index ac1108a64..23750be8d 100644 --- a/src/main/java/org/traccar/protocol/T800xProtocolDecoder.java +++ b/src/main/java/org/traccar/protocol/T800xProtocolDecoder.java @@ -163,8 +163,7 @@ public class T800xProtocolDecoder extends BaseProtocolDecoder { boolean positionType = type == MSG_GPS || type == MSG_GPS_2 || type == MSG_ALARM || type == MSG_ALARM_2; if (!positionType) { - var serial = header == 0x2323 ? 0x0001 : index; - sendResponse(channel, header, type, serial, imei, 0); + sendResponse(channel, header, type, header == 0x2323 ? 1 : index, imei, 0); } if (positionType) { @@ -519,8 +518,7 @@ public class T800xProtocolDecoder extends BaseProtocolDecoder { boolean acknowledgement = AttributeUtil.lookup( getCacheManager(), Keys.PROTOCOL_ACK.withPrefix(getProtocolName()), deviceSession.getDeviceId()); if (acknowledgement || type == MSG_ALARM || type == MSG_ALARM_2) { - var serial = header == 0x2323 ? 0x0001 : index; - sendResponse(channel, header, type, serial, imei, alarm); + sendResponse(channel, header, type, header == 0x2323 ? 1 : index, imei, alarm); } return position; -- cgit v1.2.3