diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-16 11:23:41 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-16 11:23:41 +0500 |
commit | 1b8e05ce34ff7c576c29e383601f74cb8c01d728 (patch) | |
tree | 72356a7e9384d46aa2ed31e08765a893abe7c8b8 /src/org/traccar/events/MotionEventHandler.java | |
parent | 3f0f6c1f6ec4665783ec62a65f8f30a33f1d2152 (diff) | |
download | trackermap-server-1b8e05ce34ff7c576c29e383601f74cb8c01d728.tar.gz trackermap-server-1b8e05ce34ff7c576c29e383601f74cb8c01d728.tar.bz2 trackermap-server-1b8e05ce34ff7c576c29e383601f74cb8c01d728.zip |
Moved variables from parent to inheritor
Diffstat (limited to 'src/org/traccar/events/MotionEventHandler.java')
-rw-r--r-- | src/org/traccar/events/MotionEventHandler.java | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/org/traccar/events/MotionEventHandler.java b/src/org/traccar/events/MotionEventHandler.java index c05bd4843..d10513d26 100644 --- a/src/org/traccar/events/MotionEventHandler.java +++ b/src/org/traccar/events/MotionEventHandler.java @@ -37,17 +37,19 @@ public class MotionEventHandler extends BaseEventHandler { @Override protected Collection<Event> analyzePosition(Position position) { - Collection<Event> result = null; - if (!isLastPosition()) { + + Device device = Context.getDataManager().getDeviceById(position.getDeviceId()); + if (device == null) { + return null; + } + if (position.getId() != device.getPositionId() || !position.getValid()) { return null; } + Collection<Event> result = null; double speed = position.getSpeed(); boolean valid = position.getValid(); - if (getDevice() == null) { - return null; - } - String motion = getDevice().getMotion(); + String motion = device.getMotion(); if (motion == null) { motion = Device.STATUS_STOPPED; } |