Make methods static
[netconf.git] / netconf / netconf-topology-singleton / src / test / java / org / opendaylight / netconf / topology / singleton / impl / NetconfNodeActorTest.java
index 5abb6ce320a87034961515730249c803a8321c80..09415d9c67fcf16d0b03f0efdc14f9601a12fa92 100644 (file)
@@ -560,7 +560,7 @@ public class NetconfNodeActorTest {
         doReturn(mockMountPointReg).when(mockMountPointBuilder).register();
     }
 
-    private PotentialSchemaSource<?> withSourceId(final SourceIdentifier identifier) {
+    private static PotentialSchemaSource<?> withSourceId(final SourceIdentifier identifier) {
         return argThat(new ArgumentMatcher<PotentialSchemaSource<?>>() {
             @Override
             public boolean matches(final Object argument) {
@@ -570,7 +570,7 @@ public class NetconfNodeActorTest {
         });
     }
 
-    private String convertStreamToString(final InputStream is) {
+    private static String convertStreamToString(final InputStream is) {
         try (Scanner scanner = new Scanner(is)) {
             return scanner.useDelimiter("\\A").hasNext() ? scanner.next() : "";
         }