Skip to content

Commit

Permalink
Fixed identation and naming
Browse files Browse the repository at this point in the history
  • Loading branch information
NateZ7 committed Apr 30, 2018
1 parent 38a2fea commit db7c498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/traccar/protocol/AustinNbProtocolDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public AustinNbProtocolDecoder(AustinNbProtocol protocol) {
.number("(d+);") // angle
.number("(d+);") // range
.number("(d+);") // out of range
.expression("(.*)") // operator
.expression("(.*)") // operator
.any()
.compile();

Expand Down Expand Up @@ -71,7 +71,7 @@ protected Object decode(
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;
Expand Down

0 comments on commit db7c498

Please sign in to comment.