diff options
author | Abyss777 <abyss@fox5.ru> | 2017-07-19 15:24:55 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-07-19 15:24:55 +0500 |
commit | a9478ded48de140d47d17def1ee5329267fe6088 (patch) | |
tree | adc5a9177fd5adcf10a8b56ee4620780dfc13cd9 /src/org/traccar/processing/ComputedAttributesHandler.java | |
parent | cb0d7cccaecfe049e04defd90884976ac1e982f9 (diff) | |
download | trackermap-server-a9478ded48de140d47d17def1ee5329267fe6088.tar.gz trackermap-server-a9478ded48de140d47d17def1ee5329267fe6088.tar.bz2 trackermap-server-a9478ded48de140d47d17def1ee5329267fe6088.zip |
Refactored four managers
Diffstat (limited to 'src/org/traccar/processing/ComputedAttributesHandler.java')
-rw-r--r-- | src/org/traccar/processing/ComputedAttributesHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/processing/ComputedAttributesHandler.java b/src/org/traccar/processing/ComputedAttributesHandler.java index 536e39ec4..d6a762535 100644 --- a/src/org/traccar/processing/ComputedAttributesHandler.java +++ b/src/org/traccar/processing/ComputedAttributesHandler.java @@ -86,8 +86,8 @@ public class ComputedAttributesHandler extends BaseDataHandler { @Override protected Position handlePosition(Position position) { - Collection<Attribute> attributes = Context.getAttributesManager().getAttributes( - Context.getAttributesManager().getAllDeviceAttributes(position.getDeviceId())); + Collection<Attribute> attributes = Context.getAttributesManager().getItems(Attribute.class, + Context.getAttributesManager().getAllDeviceItems(position.getDeviceId())); for (Attribute attribute : attributes) { if (attribute.getAttribute() != null) { Object result = null; |