Fix checkstyle violations in samples
[openflowplugin.git] / samples / simple-client / src / main / java / org / opendaylight / openflowjava / protocol / impl / clients / UdpSimpleClientFramer.java
index b893a8f346c137b2fad81c694c6b022a7a3ae086..287276fe9b600f8ce46459b4bda8173e415a5852 100644 (file)
@@ -13,9 +13,7 @@ import io.netty.buffer.ByteBuf;
 import io.netty.channel.ChannelHandlerContext;
 import io.netty.channel.socket.DatagramPacket;
 import io.netty.handler.codec.MessageToMessageDecoder;
-
 import java.util.List;
-
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -26,7 +24,7 @@ import org.slf4j.LoggerFactory;
  */
 public class UdpSimpleClientFramer extends MessageToMessageDecoder<DatagramPacket> {
 
-    /** Length of OpenFlow 1.3 header */
+    /** Length of OpenFlow 1.3 header .*/
     public static final byte LENGTH_OF_HEADER = 8;
     private static final byte LENGTH_INDEX_IN_HEADER = 2;
     private static final Logger LOG = LoggerFactory.getLogger(UdpSimpleClientFramer.class);