aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/CellocatorProtocolDecoder.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/CellocatorProtocolDecoder.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/CellocatorProtocolDecoder.java')
-rw-r--r--src/org/traccar/protocol/CellocatorProtocolDecoder.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/CellocatorProtocolDecoder.java b/src/org/traccar/protocol/CellocatorProtocolDecoder.java
index 7ef013e28..67db9aa7d 100644
--- a/src/org/traccar/protocol/CellocatorProtocolDecoder.java
+++ b/src/org/traccar/protocol/CellocatorProtocolDecoder.java
@@ -100,8 +100,7 @@ public class CellocatorProtocolDecoder extends BaseProtocolDecoder {
if (type == MSG_CLIENT_STATUS) {
- Position position = new Position();
- position.setProtocol(getProtocolName());
+ Position position = new Position(getProtocolName());
DeviceSession deviceSession = getDeviceSession(channel, remoteAddress, String.valueOf(deviceUniqueId));
if (deviceSession == null) {