aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/VtfmsProtocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-10-17 17:08:59 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2018-10-17 17:08:59 +1300
commit61d4c1f15b645aa06c84905933108437e1ade92a (patch)
tree33ca5e2e7d262c6941d66a6c23ff37c2c32e7a8f /src/org/traccar/protocol/VtfmsProtocol.java
parentae32084f88df4436e1a2cdcb346ff1e7e286e369 (diff)
downloadtrackermap-server-61d4c1f15b645aa06c84905933108437e1ade92a.tar.gz
trackermap-server-61d4c1f15b645aa06c84905933108437e1ade92a.tar.bz2
trackermap-server-61d4c1f15b645aa06c84905933108437e1ade92a.zip
Move server init into constructor
Diffstat (limited to 'src/org/traccar/protocol/VtfmsProtocol.java')
-rw-r--r--src/org/traccar/protocol/VtfmsProtocol.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/org/traccar/protocol/VtfmsProtocol.java b/src/org/traccar/protocol/VtfmsProtocol.java
index 8247a9ea3..2826a86e6 100644
--- a/src/org/traccar/protocol/VtfmsProtocol.java
+++ b/src/org/traccar/protocol/VtfmsProtocol.java
@@ -21,16 +21,10 @@ import org.traccar.TrackerServer;
import io.netty.handler.codec.string.StringDecoder;
-import java.util.List;
-
public class VtfmsProtocol extends BaseProtocol {
public VtfmsProtocol() {
- }
-
- @Override
- public void initTrackerServers(List<TrackerServer> serverList) {
- serverList.add(new TrackerServer(false, getName()) {
+ addServer(new TrackerServer(false, getName()) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline) {
pipeline.addLast(new VtfmsFrameDecoder());
@@ -38,7 +32,7 @@ public class VtfmsProtocol extends BaseProtocol {
pipeline.addLast(new VtfmsProtocolDecoder(VtfmsProtocol.this));
}
});
- serverList.add(new TrackerServer(true, getName()) {
+ addServer(new TrackerServer(true, getName()) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline) {
pipeline.addLast(new StringDecoder());