From e7d5dae5af7214f7f8dac39e8d081ad6c4533d20 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Thu, 23 Aug 2018 10:10:44 +0500 Subject: Make accumulators nullable --- src/org/traccar/model/DeviceAccumulators.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/org/traccar/model/DeviceAccumulators.java') 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; } -- cgit v1.2.3