diff options
author | Srk <watertext@hotmail.it> | 2017-11-18 19:52:34 +0100 |
---|---|---|
committer | Srk <watertext@hotmail.it> | 2017-11-18 19:52:34 +0100 |
commit | e6ae0f1de880ab887d84aa31fe88b2e1eb67bad8 (patch) | |
tree | 14ddd0a166950b37533772e18a1c92f737416e42 /src/org/traccar | |
parent | fbc49050c626ccd3d25370031204cc64e5a8f5c2 (diff) | |
download | trackermap-server-e6ae0f1de880ab887d84aa31fe88b2e1eb67bad8.tar.gz trackermap-server-e6ae0f1de880ab887d84aa31fe88b2e1eb67bad8.tar.bz2 trackermap-server-e6ae0f1de880ab887d84aa31fe88b2e1eb67bad8.zip |
Rollback number as primitive type
Diffstat (limited to 'src/org/traccar')
-rw-r--r-- | src/org/traccar/notification/NotificationFormatter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java index 385f117ea..c537a64e0 100644 --- a/src/org/traccar/notification/NotificationFormatter.java +++ b/src/org/traccar/notification/NotificationFormatter.java @@ -39,7 +39,7 @@ public final class NotificationFormatter { private NotificationFormatter() { } - public static VelocityContext prepareContext(Long userId, Event event, Position position) { + public static VelocityContext prepareContext(long userId, Event event, Position position) { User user = Context.getPermissionsManager().getUser(userId); Device device = Context.getIdentityManager().getById(event.getDeviceId()); |