diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-01-26 19:03:15 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-01-26 19:03:15 +1300 |
commit | a24a7d075ec26e36d26e6ffaec028d7893d07800 (patch) | |
tree | ffeee9d02e3e135506382facc54c57654f081b34 /src/org/traccar/processing/ComputedAttributesHandler.java | |
parent | 346c6befe177c6cffe99e6ac9cc6083000a2981c (diff) | |
download | trackermap-server-a24a7d075ec26e36d26e6ffaec028d7893d07800.tar.gz trackermap-server-a24a7d075ec26e36d26e6ffaec028d7893d07800.tar.bz2 trackermap-server-a24a7d075ec26e36d26e6ffaec028d7893d07800.zip |
Implement some explicit casts
Diffstat (limited to 'src/org/traccar/processing/ComputedAttributesHandler.java')
-rw-r--r-- | src/org/traccar/processing/ComputedAttributesHandler.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/org/traccar/processing/ComputedAttributesHandler.java b/src/org/traccar/processing/ComputedAttributesHandler.java index f0c54d355..b37db05bf 100644 --- a/src/org/traccar/processing/ComputedAttributesHandler.java +++ b/src/org/traccar/processing/ComputedAttributesHandler.java @@ -102,10 +102,12 @@ public class ComputedAttributesHandler extends BaseDataHandler { try { switch (attribute.getType()) { case "number": - position.getAttributes().put(attribute.getAttribute(), result); + Number numberValue = (Number) result; + position.getAttributes().put(attribute.getAttribute(), numberValue); break; case "boolean": - position.getAttributes().put(attribute.getAttribute(), result); + Boolean booleanValue = (Boolean) result; + position.getAttributes().put(attribute.getAttribute(), booleanValue); break; default: position.getAttributes().put(attribute.getAttribute(), result.toString()); |