diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-09 22:33:56 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-09 22:33:56 +1300 |
commit | 30cf4d484307ad89ce538bae36c47c91eb430536 (patch) | |
tree | 78caf275ff46530c53d8d1ccb89092aea00f23b4 /src/org/traccar/protocol/MiniFinderProtocolDecoder.java | |
parent | 9e569d3f839838f84f46e164660f294e9d4ca709 (diff) | |
download | trackermap-server-30cf4d484307ad89ce538bae36c47c91eb430536.tar.gz trackermap-server-30cf4d484307ad89ce538bae36c47c91eb430536.tar.bz2 trackermap-server-30cf4d484307ad89ce538bae36c47c91eb430536.zip |
Fix some check style issues
Diffstat (limited to 'src/org/traccar/protocol/MiniFinderProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocolDecoder.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocolDecoder.java b/src/org/traccar/protocol/MiniFinderProtocolDecoder.java index 9a3ac836d..0bb9aee60 100644 --- a/src/org/traccar/protocol/MiniFinderProtocolDecoder.java +++ b/src/org/traccar/protocol/MiniFinderProtocolDecoder.java @@ -53,15 +53,14 @@ public class MiniFinderProtocolDecoder extends BaseProtocolDecoder { String sentence = (String) msg; - // Identification if (sentence.startsWith("!1")) { + + // Identification identify(sentence.substring(3, sentence.length()), channel); - } - // Location - else if (sentence.startsWith("!D") && hasDeviceId()) { + } else if (sentence.startsWith("!D") && hasDeviceId()) { - // Parse message + // Location Matcher parser = PATTERN.matcher(sentence); if (!parser.matches()) { return null; @@ -104,6 +103,7 @@ public class MiniFinderProtocolDecoder extends BaseProtocolDecoder { // Satellites position.set(Event.KEY_SATELLITES, parser.group(index++)); + return position; } |