aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/database/GeofenceManager.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-07-12 09:55:13 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-07-12 09:55:13 +1200
commit781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba (patch)
treeb3c62c7d26b3534e139aa26fa6315428473b160b /src/org/traccar/database/GeofenceManager.java
parenta4a127b5255cd62aae25419dbf289a926c5adbfd (diff)
downloadtrackermap-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.tar.gz
trackermap-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.tar.bz2
trackermap-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.zip
Use long primitive type
Diffstat (limited to 'src/org/traccar/database/GeofenceManager.java')
-rw-r--r--src/org/traccar/database/GeofenceManager.java8
1 files changed, 4 insertions, 4 deletions
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<Geofence> 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<Long> getCurrentDeviceGeofences(Position position) {
List<Long> 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);
}