aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/DwayProtocol.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/protocol/DwayProtocol.java')
-rw-r--r--src/org/traccar/protocol/DwayProtocol.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/DwayProtocol.java b/src/org/traccar/protocol/DwayProtocol.java
index d9af5bd02..7666f4c88 100644
--- a/src/org/traccar/protocol/DwayProtocol.java
+++ b/src/org/traccar/protocol/DwayProtocol.java
@@ -35,10 +35,10 @@ public class DwayProtocol extends BaseProtocol {
serverList.add(new TrackerServer(false, getName()) {
@Override
protected void addProtocolHandlers(PipelineBuilder pipeline) {
- pipeline.addLast("frameDecoder", new LineBasedFrameDecoder(1024));
- pipeline.addLast("stringEncoder", new StringEncoder());
- pipeline.addLast("stringDecoder", new StringDecoder());
- pipeline.addLast("objectDecoder", new DwayProtocolDecoder(DwayProtocol.this));
+ pipeline.addLast(new LineBasedFrameDecoder(1024));
+ pipeline.addLast(new StringEncoder());
+ pipeline.addLast(new StringDecoder());
+ pipeline.addLast(new DwayProtocolDecoder(DwayProtocol.this));
}
});
}