Remove trailing whitespace
[openflowjava.git] / openflow-protocol-api / src / test / java / org / opendaylight / openflowjava / protocol / api / keys / MatchEntrySerializerKeyTest.java
index 0863db37aeead4d153af4b83fb1de42ed30d734d..8bf98fdaea6f41e91bde14be2619023ec2a7b228 100644 (file)
@@ -56,9 +56,9 @@ public class MatchEntrySerializerKeyTest {
         key2.setExperimenterId(42L);
         Assert.assertFalse("Wrong hashCode", key1.hashCode() == key2.hashCode());
     }
-    
+
     /**
-     * Test MatchEntrySerializerKey equals - additional test 
+     * Test MatchEntrySerializerKey equals - additional test
      */
     @Test
     public void testEquals(){
@@ -68,10 +68,10 @@ public class MatchEntrySerializerKeyTest {
         key2 = new MatchEntrySerializerKey<>(EncodeConstants.OF13_VERSION_ID, OpenflowBasicClass.class, InPort.class);
         Assert.assertTrue("Wrong equal to identical object.", key1.equals(key1));
         Assert.assertFalse("Wrong equal to different class.", key1.equals(new Object()));
-        
+
         Long expId1 = 987654331L;
         Long expId2 = 123456789L;
-        
+
         key1.setExperimenterId(null);
         key2.setExperimenterId(expId2);
         Assert.assertFalse("Wrong equal by experimenterId", key1.equals(key2));