Checkstyle enforcer
[controller.git] / opendaylight / sal / api / src / test / java / org / opendaylight / controller / sal / core / NodeTest.java
index c081e10645b6a1d2ff1f55dc942b47d932310344..c6697196d479f0764309c7906d3c5a97f0ccf8a8 100644 (file)
@@ -396,7 +396,7 @@ public class NodeTest {
     public void testExtensibleNode() {
         // Add a new ID type
         Assert.assertTrue(Node.NodeIDType.registerIDType("FOO", Integer.class));
-        
+
         // Trying to re-register the node must fail
         Assert.assertFalse(Node.NodeIDType.registerIDType("FOO",
                                                           Integer.class));
@@ -408,7 +408,7 @@ public class NodeTest {
             // Got an unexpected exception
             Assert.assertTrue(false);
         }
-        
+
         // Now unregister the type and make sure the node doesn't get
         // created
         Node.NodeIDType.unRegisterIDType("FOO");