Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10HelloInputMessageFactoryTest.java
index c4807192a4fc57140ab26ec7ce6a73cb9cbe3d4e..e8591d4a86817fb57c74419df5316a07a9f6f0f5 100644 (file)
@@ -44,17 +44,17 @@ public class OF10HelloInputMessageFactoryTest {
 
     /**
      * Testing of {@link OF10HelloInputMessageFactory} for correct translation from POJO
-     * @throws Exception 
+     * @throws Exception
      */
     @Test
     public void testWithoutElementsSet() throws Exception {
         HelloInputBuilder hib = new HelloInputBuilder();
         BufferHelper.setupHeader(hib, EncodeConstants.OF10_VERSION_ID);
         HelloInput hi = hib.build();
-        
+
         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
         helloFactory.serialize(hi, out);
-        
+
         BufferHelper.checkHeaderV10(out, (byte) 0, 8);
     }