Make methods static
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / reconciliation / configuration / HwvtepReconciliationManager.java
index 3ef5b833a80835f7a450b9903facfb4e52b8d995..72de9ce65292902d78c09c4f6510669dfd0beb8d 100644 (file)
@@ -87,14 +87,14 @@ public class HwvtepReconciliationManager implements ClusteredDataTreeChangeListe
         }
     }
 
-    private Node getCreated(DataObjectModification<Node> mod) {
+    private static Node getCreated(DataObjectModification<Node> mod) {
         if (mod.getModificationType() == ModificationType.WRITE && mod.getDataBefore() == null) {
             return mod.getDataAfter();
         }
         return null;
     }
 
-    private Node getRemoved(DataObjectModification<Node> mod) {
+    private static Node getRemoved(DataObjectModification<Node> mod) {
         if (mod.getModificationType() == ModificationType.DELETE) {
             return mod.getDataBefore();
         }