From db7c4984ecb2dda40b27bd99cd17372207d2ef3a Mon Sep 17 00:00:00 2001 From: nativbarak Date: Mon, 30 Apr 2018 09:35:03 +0300 Subject: Fixed identation and naming --- src/org/traccar/protocol/AustinNbProtocolDecoder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/org/traccar/protocol/AustinNbProtocolDecoder.java') 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; -- cgit v1.2.3