diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-12-31 11:47:20 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-12-31 11:47:20 +1300 |
commit | 352986138b5eb580af85f9d0650766303c72ea90 (patch) | |
tree | 0e6eeb2fba240200d590433417eb5dadef4092ad /src/org/traccar/BasePipelineFactory.java | |
parent | 679c2852e3c4987091e0b84b7e7d80a9f72964a0 (diff) | |
download | trackermap-server-352986138b5eb580af85f9d0650766303c72ea90.tar.gz trackermap-server-352986138b5eb580af85f9d0650766303c72ea90.tar.bz2 trackermap-server-352986138b5eb580af85f9d0650766303c72ea90.zip |
Fix style issues
Diffstat (limited to 'src/org/traccar/BasePipelineFactory.java')
-rw-r--r-- | src/org/traccar/BasePipelineFactory.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/org/traccar/BasePipelineFactory.java b/src/org/traccar/BasePipelineFactory.java index d949c9c9c..a0b42feeb 100644 --- a/src/org/traccar/BasePipelineFactory.java +++ b/src/org/traccar/BasePipelineFactory.java @@ -127,12 +127,14 @@ public abstract class BasePipelineFactory implements ChannelPipelineFactory { if (Context.getGeocoder() != null) { geocoderHandler = new GeocoderHandler( - Context.getGeocoder(), Context.getConfig().getBoolean("geocoder.processInvalidPositions")); + Context.getGeocoder(), + Context.getConfig().getBoolean("geocoder.processInvalidPositions")); } if (Context.getGeolocationProvider() != null) { geolocationHandler = new GeolocationHandler( - Context.getGeolocationProvider(), Context.getConfig().getBoolean("location.processInvalidPositions")); + Context.getGeolocationProvider(), + Context.getConfig().getBoolean("location.processInvalidPositions")); } distanceHandler = new DistanceHandler(); |