Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / EchoReplyMessageFactoryTest.java
index abd1d1d5288737fd8b94ee34bbc9dff54bd2fb64..801d47a6466894d337959d376aceac84d9fad3e7 100644 (file)
@@ -50,7 +50,7 @@ public class EchoReplyMessageFactoryTest {
 
         BufferHelper.checkHeaderV13(builtByFactory);
     }
-    
+
     /**
      * Testing {@link EchoReplyMessageFactory} for correct translation into POJO
      */
@@ -59,7 +59,7 @@ public class EchoReplyMessageFactoryTest {
         byte[] data = new byte[]{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07};
         ByteBuf bb = BufferHelper.buildBuffer(data);
         EchoOutput builtByFactory = BufferHelper.deserialize(echoFactory, bb);
-        
+
         BufferHelper.checkHeaderV13(builtByFactory);
         Assert.assertArrayEquals("Wrong data", data, builtByFactory.getData());
     }