Mass conversion to static methods
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / netconf / sal / rest / impl / PATCHJsonBodyWriter.java
index 59e13927f5611edd3cccdc73b3ce06e1fe1ef37e..f172364e73fdfded35390b391b8fc45d234eb747 100644 (file)
@@ -90,7 +90,7 @@ public class PATCHJsonBodyWriter implements MessageBodyWriter<PATCHStatusContext
         jsonWriter.flush();
     }
 
-    private void reportSuccess(final JsonWriter jsonWriter) throws IOException {
+    private static void reportSuccess(final JsonWriter jsonWriter) throws IOException {
         jsonWriter.name("ok").beginArray().nullValue().endArray();
     }