Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10BarrierInputMessageFactoryTest.java
index 4ddb02cc0d175d59787b684ab25dba7d8fe684a8..ae752b6a875658dc5289c133dbd7101b4ad21fd6 100644 (file)
@@ -44,17 +44,17 @@ public class OF10BarrierInputMessageFactoryTest {
 
     /**
      * Testing of {@link OF10BarrierInputMessageFactory} for correct translation from POJO
-     * @throws Exception 
+     * @throws Exception
      */
     @Test
     public void test() throws Exception {
         BarrierInputBuilder bib = new BarrierInputBuilder();
         BufferHelper.setupHeader(bib, EncodeConstants.OF10_VERSION_ID);
         BarrierInput bi = bib.build();
-        
+
         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
         barrierFactory.serialize(bi, out);
-        
+
         BufferHelper.checkHeaderV10(out, (byte) 18, 8);
     }