diff options
author | Abyss777 <abyss@fox5.ru> | 2018-06-27 15:55:19 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-06-27 15:55:19 +0500 |
commit | 14840af2abd9976b8f5634af8e77f4a7126dfac1 (patch) | |
tree | d9bd2bc190a1a67bda345cc804f3b21d20416cec /src/org/traccar/notification/NotificationWeb.java | |
parent | b70e46560359a181b0136fa1c6b0400615bfc904 (diff) | |
download | trackermap-server-14840af2abd9976b8f5634af8e77f4a7126dfac1.tar.gz trackermap-server-14840af2abd9976b8f5634af8e77f4a7126dfac1.tar.bz2 trackermap-server-14840af2abd9976b8f5634af8e77f4a7126dfac1.zip |
- Rename NotificationException to MessageException
- Simplify Notificator instantiation
- Make sms configuration more clear
- Move some defaults in code
- Some cleanup
Diffstat (limited to 'src/org/traccar/notification/NotificationWeb.java')
-rw-r--r-- | src/org/traccar/notification/NotificationWeb.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/traccar/notification/NotificationWeb.java b/src/org/traccar/notification/NotificationWeb.java index 8e04fc2c4..afc401d24 100644 --- a/src/org/traccar/notification/NotificationWeb.java +++ b/src/org/traccar/notification/NotificationWeb.java @@ -23,8 +23,7 @@ import org.traccar.model.Position; public final class NotificationWeb extends Notificator { @Override - public void sendSync(long userId, Event event, Position position) throws NotificationException, - InterruptedException { + public void sendSync(long userId, Event event, Position position) { Context.getConnectionManager().updateEvent(userId, event); } |