diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-01-22 19:33:56 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-01-22 19:33:56 +1300 |
commit | 58ade656e2070387f95984f5851cbc41990467ba (patch) | |
tree | 7ed9c8e095ad6bd57098f214c5749475853bbac4 /src/org/traccar/protocol/GlobalSatProtocolDecoder.java | |
parent | 68b2d3ab8897114dac8cd92618cf0777f630750a (diff) | |
download | trackermap-server-58ade656e2070387f95984f5851cbc41990467ba.tar.gz trackermap-server-58ade656e2070387f95984f5851cbc41990467ba.tar.bz2 trackermap-server-58ade656e2070387f95984f5851cbc41990467ba.zip |
Add new position constructor
Diffstat (limited to 'src/org/traccar/protocol/GlobalSatProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/GlobalSatProtocolDecoder.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/GlobalSatProtocolDecoder.java b/src/org/traccar/protocol/GlobalSatProtocolDecoder.java index c45a937d4..4361e0c2f 100644 --- a/src/org/traccar/protocol/GlobalSatProtocolDecoder.java +++ b/src/org/traccar/protocol/GlobalSatProtocolDecoder.java @@ -76,8 +76,7 @@ public class GlobalSatProtocolDecoder extends BaseProtocolDecoder { } String[] values = sentence.split(","); - Position position = new Position(); - position.setProtocol(getProtocolName()); + Position position = new Position(getProtocolName()); for (int formatIndex = 0, valueIndex = 1; formatIndex < format.length() && valueIndex < values.length; formatIndex++) { @@ -207,8 +206,7 @@ public class GlobalSatProtocolDecoder extends BaseProtocolDecoder { return null; } - Position position = new Position(); - position.setProtocol(getProtocolName()); + Position position = new Position(getProtocolName()); DeviceSession deviceSession = getDeviceSession(channel, remoteAddress, parser.next()); if (deviceSession == null) { |