aboutsummaryrefslogtreecommitdiff
path: root/src
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
parenta4a127b5255cd62aae25419dbf289a926c5adbfd (diff)
downloadtraccar-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.tar.gz
traccar-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.tar.bz2
traccar-server-781f4b0a01dd8b16892b0bb907d43f9e0ca6f2ba.zip
Use long primitive type
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/database/GeofenceManager.java8
-rw-r--r--src/org/traccar/database/NotificationManager.java2
-rw-r--r--src/org/traccar/events/GeofenceEventHandler.java4
3 files changed, 7 insertions, 7 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);
}
diff --git a/src/org/traccar/database/NotificationManager.java b/src/org/traccar/database/NotificationManager.java
index d263e160f..e618d7ed3 100644
--- a/src/org/traccar/database/NotificationManager.java
+++ b/src/org/traccar/database/NotificationManager.java
@@ -54,7 +54,7 @@ public class NotificationManager {
}
Set<Long> users = Context.getPermissionsManager().getDeviceUsers(event.getDeviceId());
- for (Long userId : users) {
+ for (long userId : users) {
if (event.getGeofenceId() == 0 || Context.getGeofenceManager() != null
&& Context.getGeofenceManager().checkGeofence(userId, event.getGeofenceId())) {
Notification notification = getUserNotificationByType(userId, event.getType());
diff --git a/src/org/traccar/events/GeofenceEventHandler.java b/src/org/traccar/events/GeofenceEventHandler.java
index a3d8aa375..9a546182d 100644
--- a/src/org/traccar/events/GeofenceEventHandler.java
+++ b/src/org/traccar/events/GeofenceEventHandler.java
@@ -66,7 +66,7 @@ public class GeofenceEventHandler extends BaseEventHandler {
try {
if (dataManager.getLastEvents(position.getDeviceId(),
Event.TYPE_GEOFENCE_ENTER, suppressRepeated).isEmpty()) {
- for (Long geofenceId : newGeofences) {
+ for (long geofenceId : newGeofences) {
Event event = new Event(Event.TYPE_GEOFENCE_ENTER, position.getDeviceId(), position.getId());
event.setGeofenceId(geofenceId);
events.add(event);
@@ -78,7 +78,7 @@ public class GeofenceEventHandler extends BaseEventHandler {
try {
if (dataManager.getLastEvents(position.getDeviceId(),
Event.TYPE_GEOFENCE_EXIT, suppressRepeated).isEmpty()) {
- for (Long geofenceId : oldGeofences) {
+ for (long geofenceId : oldGeofences) {
Event event = new Event(Event.TYPE_GEOFENCE_EXIT, position.getDeviceId(), position.getId());
event.setGeofenceId(geofenceId);
events.add(event);