aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/T57Protocol.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-10-16 12:15:43 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2018-10-16 12:15:44 +1300
commit421c13cf3aefeb0de6e057bf9d92ee4347d68f2f (patch)
tree0d1b2965ca51705d52784dcc55882e12bff24317 /src/org/traccar/protocol/T57Protocol.java
parente151bd07a685d8b77ff6c24455ad0520e68843d4 (diff)
downloadtraccar-server-421c13cf3aefeb0de6e057bf9d92ee4347d68f2f.tar.gz
traccar-server-421c13cf3aefeb0de6e057bf9d92ee4347d68f2f.tar.bz2
traccar-server-421c13cf3aefeb0de6e057bf9d92ee4347d68f2f.zip
Remove remaining handler names
Diffstat (limited to 'src/org/traccar/protocol/T57Protocol.java')
-rw-r--r--src/org/traccar/protocol/T57Protocol.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/T57Protocol.java b/src/org/traccar/protocol/T57Protocol.java
index 9f3dd62a3..50b302e74 100644
--- a/src/org/traccar/protocol/T57Protocol.java
+++ b/src/org/traccar/protocol/T57Protocol.java
@@ -34,10 +34,10 @@ public class T57Protocol extends BaseProtocol {
serverList.add(new TrackerServer(false, getName()) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline) {
- pipeline.addLast("frameDecoder", new T57FrameDecoder());
- pipeline.addLast("stringEncoder", new StringEncoder());
- pipeline.addLast("stringDecoder", new StringDecoder());
- pipeline.addLast("objectDecoder", new T57ProtocolDecoder(T57Protocol.this));
+ pipeline.addLast(new T57FrameDecoder());
+ pipeline.addLast(new StringEncoder());
+ pipeline.addLast(new StringDecoder());
+ pipeline.addLast(new T57ProtocolDecoder(T57Protocol.this));
}
});
}