From 7a80a011789dced9db2c6cdc65cb327d87a6d2b1 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 4 Oct 2015 13:58:50 +1300 Subject: Fix some PMD reported bugs --- src/org/traccar/protocol/MxtFrameDecoder.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/org/traccar/protocol/MxtFrameDecoder.java') 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; } -- cgit v1.2.3