aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/T800xProtocol.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/protocol/T800xProtocol.java')
-rw-r--r--src/org/traccar/protocol/T800xProtocol.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/protocol/T800xProtocol.java b/src/org/traccar/protocol/T800xProtocol.java
index 26f34ee77..d8012ee07 100644
--- a/src/org/traccar/protocol/T800xProtocol.java
+++ b/src/org/traccar/protocol/T800xProtocol.java
@@ -36,9 +36,9 @@ public class T800xProtocol extends BaseProtocol {
serverList.add(new TrackerServer(false, getName()) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline) {
- pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(1024, 3, 2, -5, 0));
- pipeline.addLast("objectEncoder", new T800xProtocolEncoder());
- pipeline.addLast("objectDecoder", new T800xProtocolDecoder(T800xProtocol.this));
+ pipeline.addLast(new LengthFieldBasedFrameDecoder(1024, 3, 2, -5, 0));
+ pipeline.addLast(new T800xProtocolEncoder());
+ pipeline.addLast(new T800xProtocolDecoder(T800xProtocol.this));
}
});
}