aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/MeiligaoProtocolDecoder.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-01-22 19:33:56 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2018-01-22 19:33:56 +1300
commit58ade656e2070387f95984f5851cbc41990467ba (patch)
tree7ed9c8e095ad6bd57098f214c5749475853bbac4 /src/org/traccar/protocol/MeiligaoProtocolDecoder.java
parent68b2d3ab8897114dac8cd92618cf0777f630750a (diff)
downloadtrackermap-server-58ade656e2070387f95984f5851cbc41990467ba.tar.gz
trackermap-server-58ade656e2070387f95984f5851cbc41990467ba.tar.bz2
trackermap-server-58ade656e2070387f95984f5851cbc41990467ba.zip
Add new position constructor
Diffstat (limited to 'src/org/traccar/protocol/MeiligaoProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/MeiligaoProtocolDecoder.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/MeiligaoProtocolDecoder.java b/src/org/traccar/protocol/MeiligaoProtocolDecoder.java
index 435e2ab14..9f7b8abf7 100644
--- a/src/org/traccar/protocol/MeiligaoProtocolDecoder.java
+++ b/src/org/traccar/protocol/MeiligaoProtocolDecoder.java
@@ -346,8 +346,7 @@ public class MeiligaoProtocolDecoder extends BaseProtocolDecoder {
String sentence = buf.readBytes(endIndex - buf.readerIndex()).toString(StandardCharsets.US_ASCII);
- Position position = new Position();
- position.setProtocol(getProtocolName());
+ Position position = new Position(getProtocolName());
position.setDeviceId(deviceSession.getDeviceId());
position = decodeRegular(position, sentence);
@@ -403,8 +402,7 @@ public class MeiligaoProtocolDecoder extends BaseProtocolDecoder {
} else {
- Position position = new Position();
- position.setProtocol(getProtocolName());
+ Position position = new Position(getProtocolName());
if (command == MSG_ALARM) {
short alarmCode = buf.readUnsignedByte();