Make methods static
[netconf.git] / netconf / netconf-topology-singleton / src / test / java / org / opendaylight / netconf / topology / singleton / impl / tx / ProxyReadWriteTransactionTest.java
index 434be24a6d1d0cd658dd8e2be2a3db1a19bfe674..ca74457f3da054d4d914f451ac9c2619d0dd762e 100644 (file)
@@ -398,7 +398,7 @@ public class ProxyReadWriteTransactionTest {
         }
     }
 
-    private void verifyDocumentedException(Throwable cause) {
+    private static void verifyDocumentedException(Throwable cause) {
         assertTrue("Unexpected cause " + cause, cause instanceof DocumentedException);
         final DocumentedException de = (DocumentedException) cause;
         assertEquals(DocumentedException.ErrorSeverity.WARNING, de.getErrorSeverity());