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