From 30cf4d484307ad89ce538bae36c47c91eb430536 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 9 Oct 2015 22:33:56 +1300 Subject: Fix some check style issues --- src/org/traccar/protocol/BoxProtocolDecoder.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/org/traccar/protocol/BoxProtocolDecoder.java') diff --git a/src/org/traccar/protocol/BoxProtocolDecoder.java b/src/org/traccar/protocol/BoxProtocolDecoder.java index 2b122dfa2..056677c53 100644 --- a/src/org/traccar/protocol/BoxProtocolDecoder.java +++ b/src/org/traccar/protocol/BoxProtocolDecoder.java @@ -58,17 +58,14 @@ public class BoxProtocolDecoder extends BaseProtocolDecoder { int index = sentence.indexOf(',', 2) + 1; String id = sentence.substring(index, sentence.indexOf(',', index)); identify(id, channel); - } - else if (sentence.startsWith("E,")) { + } else if (sentence.startsWith("E,")) { if (channel != null) { channel.write("A," + sentence.substring(2) + "\r"); } - } - - else if (sentence.startsWith("L,") && hasDeviceId()) { + } else if (sentence.startsWith("L,") && hasDeviceId()) { // Parse message Matcher parser = PATTERN.matcher(sentence); -- cgit v1.2.3