Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / PortStatusMessageFactoryTest.java
index cf0499ae95af6590735a4e86d19a7f890a824847..79ee3fd9e7d1f8af0712e0f1c8aaff8e28700b39 100644 (file)
@@ -50,7 +50,7 @@ public class PortStatusMessageFactoryTest {
      */
     @Test
     public void test(){
-        ByteBuf bb = BufferHelper.buildBuffer("01 " + //reason 
+        ByteBuf bb = BufferHelper.buildBuffer("01 " + //reason
                                               "00 00 00 00 00 00 00 " + //padding
                                               "00 01 02 03 " + //port no
                                               "00 00 00 00 " + //padding in ofp_port1
@@ -66,9 +66,9 @@ public class PortStatusMessageFactoryTest {
                                               "00 00 00 81 " + //curr speed
                                               "00 00 00 80" //max speed
                                               );
-        
+
         PortStatusMessage builtByFactory = BufferHelper.deserialize(statusFactory, bb);
-        
+
         BufferHelper.checkHeaderV13(builtByFactory);
         Assert.assertEquals("Wrong reason", 0x01, builtByFactory.getReason().getIntValue());
         Assert.assertEquals("Wrong portNumber", 66051L, builtByFactory.getPortNo().longValue());