diff options
author | Ivan Martinez <ivanfmartinez@users.noreply.github.com> | 2017-04-02 14:42:41 -0300 |
---|---|---|
committer | Ivan Martinez <ivanfmartinez@users.noreply.github.com> | 2017-04-02 14:42:41 -0300 |
commit | 2a5cf7c8d16fa3f41f53665c61cee8d5280f1753 (patch) | |
tree | 8d83cc0342c90f256676fb68b8ff472bbd7a687e /src | |
parent | 4137d1fa6c85676d9b7ded79b526bb9d57c511a0 (diff) | |
download | trackermap-server-2a5cf7c8d16fa3f41f53665c61cee8d5280f1753.tar.gz trackermap-server-2a5cf7c8d16fa3f41f53665c61cee8d5280f1753.tar.bz2 trackermap-server-2a5cf7c8d16fa3f41f53665c61cee8d5280f1753.zip |
make method accessible to ther classes
Diffstat (limited to 'src')
-rw-r--r-- | src/org/traccar/notification/NotificationFormatter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java index 0f723a5e1..96337ecaa 100644 --- a/src/org/traccar/notification/NotificationFormatter.java +++ b/src/org/traccar/notification/NotificationFormatter.java @@ -37,7 +37,7 @@ public final class NotificationFormatter { private NotificationFormatter() { } - private static VelocityContext prepareContext(long userId, Event event, Position position) { + public static VelocityContext prepareContext(long userId, Event event, Position position) { Device device = Context.getIdentityManager().getDeviceById(event.getDeviceId()); VelocityContext velocityContext = new VelocityContext(); @@ -58,7 +58,7 @@ public final class NotificationFormatter { return velocityContext; } - private static Template getTemplate(Event event, String path) { + public static Template getTemplate(Event event, String path) { Template template; try { template = Context.getVelocityEngine().getTemplate(path + event.getType() + ".vm", |