diff options
author | Abyss777 <abyss@fox5.ru> | 2017-07-14 10:56:20 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-07-14 10:56:20 +0500 |
commit | 44691a373200b0e265df5a24e159f5cdff89fb96 (patch) | |
tree | 3caab981542ccb98e43636e83ddf741b1974b60d /src/org/traccar/BasePipelineFactory.java | |
parent | 48fee3a5e9c5f99a0195e4c06a058d33eba4e072 (diff) | |
download | trackermap-server-44691a373200b0e265df5a24e159f5cdff89fb96.tar.gz trackermap-server-44691a373200b0e265df5a24e159f5cdff89fb96.tar.bz2 trackermap-server-44691a373200b0e265df5a24e159f5cdff89fb96.zip |
Populate driverUniqueId in CopyAttributesHanler
Diffstat (limited to 'src/org/traccar/BasePipelineFactory.java')
-rw-r--r-- | src/org/traccar/BasePipelineFactory.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/org/traccar/BasePipelineFactory.java b/src/org/traccar/BasePipelineFactory.java index 98a327220..edbebc9e2 100644 --- a/src/org/traccar/BasePipelineFactory.java +++ b/src/org/traccar/BasePipelineFactory.java @@ -41,7 +41,6 @@ import org.traccar.events.AlertEventHandler; import org.traccar.helper.Log; import org.traccar.processing.ComputedAttributesHandler; import org.traccar.processing.CopyAttributesHandler; -import org.traccar.processing.PopulateDriverHandler; import java.net.InetSocketAddress; @@ -56,7 +55,6 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { private GeocoderHandler geocoderHandler; private GeolocationHandler geolocationHandler; private HemisphereHandler hemisphereHandler; - private PopulateDriverHandler populateDriverHandler; private CopyAttributesHandler copyAttributesHandler; private ComputedAttributesHandler computedAttributesHandler; @@ -156,8 +154,6 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { hemisphereHandler = new HemisphereHandler(); } - populateDriverHandler = new PopulateDriverHandler(); - if (Context.getConfig().getBoolean("processing.copyAttributes.enable")) { copyAttributesHandler = new CopyAttributesHandler(); } @@ -221,10 +217,6 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { pipeline.addLast("motion", motionHandler); } - if (populateDriverHandler != null) { - pipeline.addLast("populateDriver", populateDriverHandler); - } - if (copyAttributesHandler != null) { pipeline.addLast("copyAttributes", copyAttributesHandler); } |