OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / DummyDecoder.java
index 55ebf43d1f79e6fd9766404d4b766d36e6a8019e..f62880066e1462b257c44af0473d6158dbd1c68b 100644 (file)
@@ -11,20 +11,18 @@ package org.opendaylight.openflowjava.protocol.impl.core;
 import io.netty.buffer.ByteBuf;
 import io.netty.channel.ChannelHandlerContext;
 import io.netty.handler.codec.ByteToMessageDecoder;
-
 import java.util.List;
-
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * @author michal.polkorab
+ * Dummy DelegatingInboundHandlerTest.
  *
+ * @author michal.polkorab
  */
 public class DummyDecoder extends ByteToMessageDecoder {
 
-    private static final Logger LOG = LoggerFactory
-            .getLogger(DummyDecoder.class);
+    private static final Logger LOG = LoggerFactory.getLogger(DummyDecoder.class);
 
     @Override
     protected void decode(ChannelHandlerContext ctx, ByteBuf in,
@@ -32,5 +30,4 @@ public class DummyDecoder extends ByteToMessageDecoder {
         LOG.debug("decoding");
         ctx.fireChannelReadComplete();
     }
-
 }