diff options
Diffstat (limited to 'src/org/traccar/notification')
-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", |