From 781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 12 Jul 2016 09:55:13 +1200 Subject: Use long primitive type --- src/org/traccar/database/GeofenceManager.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/org/traccar/database/GeofenceManager.java') diff --git a/src/org/traccar/database/GeofenceManager.java b/src/org/traccar/database/GeofenceManager.java index 32c9e2368..c35e19e9a 100644 --- a/src/org/traccar/database/GeofenceManager.java +++ b/src/org/traccar/database/GeofenceManager.java @@ -192,7 +192,7 @@ public class GeofenceManager { } Position lastPosition = Context.getConnectionManager().getLastPosition(device.getId()); if (lastPosition != null && deviceGeofencesWithGroups.containsKey(device.getId())) { - for (Long geofenceId : deviceGeofencesWithGroups.get(device.getId())) { + for (long geofenceId : deviceGeofencesWithGroups.get(device.getId())) { Geofence geofence = getGeofence(geofenceId); if (geofence != null && geofence.getGeometry() .containsPoint(lastPosition.getLatitude(), lastPosition.getLongitude())) { @@ -236,7 +236,7 @@ public class GeofenceManager { geofencesLock.readLock().lock(); try { Collection result = new LinkedList<>(); - for (Long geofenceId : geofencesIds) { + for (long geofenceId : geofencesIds) { result.add(getGeofence(geofenceId)); } return result; @@ -245,7 +245,7 @@ public class GeofenceManager { } } - public final Geofence getGeofence(Long geofenceId) { + public final Geofence getGeofence(long geofenceId) { geofencesLock.readLock().lock(); try { return geofences.get(geofenceId); @@ -274,7 +274,7 @@ public class GeofenceManager { public List getCurrentDeviceGeofences(Position position) { List result = new ArrayList<>(); - for (Long geofenceId : getAllDeviceGeofences(position.getDeviceId())) { + for (long geofenceId : getAllDeviceGeofences(position.getDeviceId())) { if (getGeofence(geofenceId).getGeometry().containsPoint(position.getLatitude(), position.getLongitude())) { result.add(geofenceId); } -- cgit v1.2.3