diff options
author | nativbarak <nativ@globekeeper.com> | 2018-04-30 09:35:03 +0300 |
---|---|---|
committer | nativbarak <nativ@globekeeper.com> | 2018-04-30 09:35:03 +0300 |
commit | db7c4984ecb2dda40b27bd99cd17372207d2ef3a (patch) | |
tree | 7cd803ad77b47a1a9d3c597136591b90bd625ddc /src/org/traccar/protocol/AustinNbProtocolDecoder.java | |
parent | 38a2feaf2208a124ddbb7a48a61cefbd4d7c583f (diff) | |
download | trackermap-server-db7c4984ecb2dda40b27bd99cd17372207d2ef3a.tar.gz trackermap-server-db7c4984ecb2dda40b27bd99cd17372207d2ef3a.tar.bz2 trackermap-server-db7c4984ecb2dda40b27bd99cd17372207d2ef3a.zip |
Fixed identation and naming
Diffstat (limited to 'src/org/traccar/protocol/AustinNbProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/AustinNbProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/AustinNbProtocolDecoder.java b/src/org/traccar/protocol/AustinNbProtocolDecoder.java index df1a93102..f13c68e34 100644 --- a/src/org/traccar/protocol/AustinNbProtocolDecoder.java +++ b/src/org/traccar/protocol/AustinNbProtocolDecoder.java @@ -42,7 +42,7 @@ public class AustinNbProtocolDecoder extends BaseProtocolDecoder { .number("(d+);") // angle .number("(d+);") // range .number("(d+);") // out of range - .expression("(.*)") // operator + .expression("(.*)") // operator .any() .compile(); @@ -71,7 +71,7 @@ public class AustinNbProtocolDecoder extends BaseProtocolDecoder { position.set("azimuth", parser.nextInt()); position.set("angle", parser.nextInt()); position.set("range", parser.nextInt()); - position.set("out_of_range", parser.nextInt()); + position.set("outOfRange", parser.nextInt()); position.set("currier", parser.next()); return position; |