Fix checkstyle
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / OFVersionDetectorTest.java
index 35b449771f6896b06e642545709f99af4c55fcb9..8cf3f75f527ad5e3e857e2e8963816a085358f20 100644 (file)
@@ -87,12 +87,9 @@ public class OFVersionDetectorTest {
     @Test
     public void testDecodeEmptyProtocolMessage() throws Exception {
         ByteBuf byteBuffer = ByteBufUtils.hexStringToByteBuf("01 00 00 08 00 00 00 01").skipBytes(8);
-               detector.decode(channelHandlerContext,
-                byteBuffer,
-                list);
+        detector.decode(channelHandlerContext, byteBuffer, list);
 
-               assertEquals( 0, byteBuffer.refCnt() ) ;
-               
+        assertEquals( 0, byteBuffer.refCnt() ) ;
     }
 
     /**
@@ -104,11 +101,9 @@ public class OFVersionDetectorTest {
      */
     @Test
     public void testDecodeNotSupportedVersionProtocolMessage() throws Exception {
-        detector.decode(channelHandlerContext,
-                ByteBufUtils.hexStringToByteBuf("02 00 00 08 00 00 00 01"),
-                list);
+        detector.decode(channelHandlerContext, ByteBufUtils.hexStringToByteBuf("02 00 00 08 00 00 00 01"), list);
 
         Assert.assertEquals("List is not empty", 0, list.size());
     }
 
-}
\ No newline at end of file
+}