diff options
author | Khaksar Weqar <wkhaksar1@gmail.com> | 2021-11-03 09:42:35 +0100 |
---|---|---|
committer | Khaksar Weqar <wkhaksar1@gmail.com> | 2021-11-03 09:42:35 +0100 |
commit | 9fd24af30db35411de8d30b96be665f00d75c0ad (patch) | |
tree | d37d51cff9e0aefddb242194487ff6435bc61814 /src/main/java/org/traccar/notification/NotificationFormatter.java | |
parent | 64d38de4a3c8063ca8aabdc5583843e6db3c9446 (diff) | |
download | trackermap-server-9fd24af30db35411de8d30b96be665f00d75c0ad.tar.gz trackermap-server-9fd24af30db35411de8d30b96be665f00d75c0ad.tar.bz2 trackermap-server-9fd24af30db35411de8d30b96be665f00d75c0ad.zip |
redundant-code-removed
Diffstat (limited to 'src/main/java/org/traccar/notification/NotificationFormatter.java')
-rw-r--r-- | src/main/java/org/traccar/notification/NotificationFormatter.java | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/main/java/org/traccar/notification/NotificationFormatter.java b/src/main/java/org/traccar/notification/NotificationFormatter.java index f33961c8b..3170d1204 100644 --- a/src/main/java/org/traccar/notification/NotificationFormatter.java +++ b/src/main/java/org/traccar/notification/NotificationFormatter.java @@ -58,14 +58,8 @@ public final class NotificationFormatter { return velocityContext; } - public static FullMessage formatFullMessage(long userId, Event event, Position position) { + public static Message formatMessage(long userId, Event event, Position position, String templatePath) { VelocityContext velocityContext = prepareContext(userId, event, position); - return TextTemplateFormatter.formatFullMessage(velocityContext, event.getType()); + return TextTemplateFormatter.formatMessage(velocityContext, event.getType(), templatePath); } - - public static ShortMessage formatShortMessage(long userId, Event event, Position position) { - VelocityContext velocityContext = prepareContext(userId, event, position); - return TextTemplateFormatter.formatShortMessage(velocityContext, event.getType()); - } - } |