Mass conversion to static methods
[netconf.git] / netconf / sal-netconf-connector / src / test / java / org / opendaylight / controller / config / yang / md / sal / connector / netconf / NetconfConnectorModuleTest.java
index 8bf239602ea71ba5be7bdf561b718d196a0a41d3..9e918b6d576ea45e6bca0c9191937104ed88d566 100644 (file)
@@ -100,7 +100,7 @@ public class NetconfConnectorModuleTest {
         verify(transaction, times(2)).submit();
     }
 
-    private void verifyNode(final NodeId nodeId, final Node node) {
+    private static void verifyNode(final NodeId nodeId, final Node node) {
         Assert.assertEquals(nodeId, node.getNodeId());
         final NetconfNode netconfNode = node.getAugmentation(NetconfNode.class);
         Assert.assertEquals(HOST, netconfNode.getHost());
@@ -109,7 +109,7 @@ public class NetconfConnectorModuleTest {
         Assert.assertEquals(TCP_ONLY, netconfNode.isTcpOnly());
     }
 
-    private void setViaReflection(final Object object, final String fieldName, final Object value) {
+    private static void setViaReflection(final Object object, final String fieldName, final Object value) {
         try {
             final Field field = AbstractNetconfConnectorModule.class.getDeclaredField(fieldName);
             field.setAccessible(true);