aboutsummaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
authorSrk <watertext@hotmail.it>2017-11-18 19:20:09 +0100
committerSrk <watertext@hotmail.it>2017-11-18 19:20:09 +0100
commitabf9687234ed94dc130cab896355604f2c4115f3 (patch)
tree73857496fada111a2dd8fa588b0ddfad70e6b485 /src/org
parentb86161aacf53a0f66dba43ee4933bf4c8e17f072 (diff)
downloadtrackermap-server-abf9687234ed94dc130cab896355604f2c4115f3.tar.gz
trackermap-server-abf9687234ed94dc130cab896355604f2c4115f3.tar.bz2
trackermap-server-abf9687234ed94dc130cab896355604f2c4115f3.zip
Revert "User defaults when no User is available"
This reverts commit ccb2e9e5e0581406963ac63a9d08acb7c2549834.
Diffstat (limited to 'src/org')
-rw-r--r--src/org/traccar/reports/ReportUtils.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/org/traccar/reports/ReportUtils.java b/src/org/traccar/reports/ReportUtils.java
index 22c7981d8..f6f386e99 100644
--- a/src/org/traccar/reports/ReportUtils.java
+++ b/src/org/traccar/reports/ReportUtils.java
@@ -61,19 +61,19 @@ public final class ReportUtils {
}
}
- public static String getDistanceUnit(Long userId) {
+ public static String getDistanceUnit(long userId) {
return (String) Context.getPermissionsManager().lookupAttribute(userId, "distanceUnit", "km");
}
- public static String getSpeedUnit(Long userId) {
+ public static String getSpeedUnit(long userId) {
return (String) Context.getPermissionsManager().lookupAttribute(userId, "speedUnit", "kn");
}
- public static String getVolumeUnit(Long userId) {
+ public static String getVolumeUnit(long userId) {
return (String) Context.getPermissionsManager().lookupAttribute(userId, "volumeUnit", "ltr");
}
- public static TimeZone getTimezone(Long userId) {
+ public static TimeZone getTimezone(long userId) {
String timezone = (String) Context.getPermissionsManager().lookupAttribute(userId, "timezone", null);
return timezone != null ? TimeZone.getTimeZone(timezone) : TimeZone.getDefault();
}
@@ -137,7 +137,7 @@ public final class ReportUtils {
return null;
}
- public static org.jxls.common.Context initializeContext(Long userId) {
+ public static org.jxls.common.Context initializeContext(long userId) {
org.jxls.common.Context jxlsContext = PoiTransformer.createInitialContext();
jxlsContext.putVar("distanceUnit", getDistanceUnit(userId));
jxlsContext.putVar("speedUnit", getSpeedUnit(userId));