aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/model
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2018-08-23 10:10:44 +0500
committerAbyss777 <abyss@fox5.ru>2018-08-23 10:10:44 +0500
commite7d5dae5af7214f7f8dac39e8d081ad6c4533d20 (patch)
treeb9b7780bcbccf9c79f1ac610779f8175b69451f0 /src/org/traccar/model
parent12bb168b88fc3dbcdf59c2fec1a919e20ab57838 (diff)
downloadtraccar-server-e7d5dae5af7214f7f8dac39e8d081ad6c4533d20.tar.gz
traccar-server-e7d5dae5af7214f7f8dac39e8d081ad6c4533d20.tar.bz2
traccar-server-e7d5dae5af7214f7f8dac39e8d081ad6c4533d20.zip
Make accumulators nullable
Diffstat (limited to 'src/org/traccar/model')
-rw-r--r--src/org/traccar/model/DeviceAccumulators.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/org/traccar/model/DeviceAccumulators.java b/src/org/traccar/model/DeviceAccumulators.java
index fe0535ef8..8a90826c4 100644
--- a/src/org/traccar/model/DeviceAccumulators.java
+++ b/src/org/traccar/model/DeviceAccumulators.java
@@ -1,6 +1,6 @@
/*
- * Copyright 2016 Anton Tananaev (anton@traccar.org)
- * Copyright 2016 Andrey Kunitsyn (andrey@traccar.org)
+ * Copyright 2016 - 2018 Anton Tananaev (anton@traccar.org)
+ * Copyright 2016 - 2018 Andrey Kunitsyn (andrey@traccar.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,23 +28,23 @@ public class DeviceAccumulators {
this.deviceId = deviceId;
}
- private double totalDistance;
+ private Double totalDistance;
- public double getTotalDistance() {
+ public Double getTotalDistance() {
return totalDistance;
}
- public void setTotalDistance(double totalDistance) {
+ public void setTotalDistance(Double totalDistance) {
this.totalDistance = totalDistance;
}
- private long hours;
+ private Long hours;
- public long getHours() {
+ public Long getHours() {
return hours;
}
- public void setHours(long hours) {
+ public void setHours(Long hours) {
this.hours = hours;
}