Fixed netty & checkstyle failures
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / DummyDecoder.java
index fcab98877775e3a3b18d04f49250f4848cb27254..55ebf43d1f79e6fd9766404d4b766d36e6a8019e 100644 (file)
@@ -23,13 +23,13 @@ import org.slf4j.LoggerFactory;
  */
 public class DummyDecoder extends ByteToMessageDecoder {
 
-    private static final Logger LOGGER = LoggerFactory
+    private static final Logger LOG = LoggerFactory
             .getLogger(DummyDecoder.class);
 
     @Override
     protected void decode(ChannelHandlerContext ctx, ByteBuf in,
             List<Object> out) throws Exception {
-        LOGGER.debug("decoding");
+        LOG.debug("decoding");
         ctx.fireChannelReadComplete();
     }