diff options
author | Abyss777 <abyss@fox5.ru> | 2016-05-26 09:30:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-05-26 09:30:43 +0500 |
commit | aa12e5c750e771016545269ffa39409b06b47eee (patch) | |
tree | d21b4414b532bfc53c9a905f3caa09f70b43b59e /src/org/traccar/helper | |
parent | ac2405f0d57fac51fe95aa755f90fe82f26f73bc (diff) | |
download | trackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.tar.gz trackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.tar.bz2 trackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.zip |
- Simplification of the hierarchy of models classes
- Removed automatically founded unnecessary imports
Diffstat (limited to 'src/org/traccar/helper')
-rw-r--r-- | src/org/traccar/helper/ObdDecoder.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/traccar/helper/ObdDecoder.java b/src/org/traccar/helper/ObdDecoder.java index c2d9b1841..a98408e05 100644 --- a/src/org/traccar/helper/ObdDecoder.java +++ b/src/org/traccar/helper/ObdDecoder.java @@ -15,7 +15,7 @@ */ package org.traccar.helper; -import org.traccar.model.Event; +import org.traccar.model.Position; import java.util.AbstractMap; import java.util.Map; @@ -86,15 +86,15 @@ public final class ObdDecoder { case PID_COOLANT_TEMPERATURE: return createEntry("coolant-temperature", intValue - 40); case PID_ENGINE_RPM: - return createEntry(Event.KEY_RPM, intValue / 4); + return createEntry(Position.KEY_RPM, intValue / 4); case PID_VEHICLE_SPEED: - return createEntry(Event.KEY_OBD_SPEED, intValue); + return createEntry(Position.KEY_OBD_SPEED, intValue); case PID_THROTTLE_POSITION: return createEntry("throttle", intValue * 100 / 255); case PID_MIL_DISTANCE: return createEntry("mil-distance", intValue); case PID_FUEL_LEVEL: - return createEntry(Event.KEY_FUEL, intValue * 100 / 255); + return createEntry(Position.KEY_FUEL, intValue * 100 / 255); case PID_DISTANCE_CLEARED: return createEntry("cleared-distance", intValue); default: |