aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/protocol/MxtFrameDecoder.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/protocol/MxtFrameDecoder.java')
-rw-r--r--src/org/traccar/protocol/MxtFrameDecoder.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/org/traccar/protocol/MxtFrameDecoder.java b/src/org/traccar/protocol/MxtFrameDecoder.java
index 23dc64d01..92723ec16 100644
--- a/src/org/traccar/protocol/MxtFrameDecoder.java
+++ b/src/org/traccar/protocol/MxtFrameDecoder.java
@@ -15,14 +15,13 @@
*/
package org.traccar.protocol;
+import java.nio.ByteOrder;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.handler.codec.frame.FrameDecoder;
-import java.nio.ByteOrder;
-
public class MxtFrameDecoder extends FrameDecoder {
@Override
@@ -48,8 +47,6 @@ public class MxtFrameDecoder extends FrameDecoder {
}
}
- String s = ChannelBuffers.hexDump(result);
-
return result;
}