Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / OFDecoderStatisticsTest.java
index 2b30d84656f43815ae2820734c002051015316f7..409e475d4603b6e07673e32dfa757c137fb14057 100644 (file)
@@ -31,7 +31,7 @@ import org.opendaylight.yangtools.yang.binding.DataObject;
 /**
  * Test to count decoder events (counters US_DECODE_SUCCESS, US_DECODE_FAIL and
  * US_RECEIVED_IN_OFJAVA have to be enabled)
- * 
+ *
  * @author madamjak
  *
  */
@@ -100,7 +100,7 @@ public class OFDecoderStatisticsTest {
         Assert.assertEquals(
                 "Wrong - different between RECEIVED_IN_OFJAVA and (US_DECODE_SUCCESS + US_DECODE_FAIL)",
                 statCounters.getCounter(CounterEventTypes.US_RECEIVED_IN_OFJAVA).getCounterValue(),
-                statCounters.getCounter(CounterEventTypes.US_DECODE_SUCCESS).getCounterValue() 
+                statCounters.getCounter(CounterEventTypes.US_DECODE_SUCCESS).getCounterValue()
                 + statCounters.getCounter(CounterEventTypes.US_DECODE_FAIL).getCounterValue());
     }