Make methods static
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / ovsdb / transact / AutoAttachRemovedCommand.java
index e0c2904da957a8a0142c6c05b7d842fba55a4d58..07a4a4fb9a6ebd3b428cab1119ea38b05d23557d 100644 (file)
@@ -58,9 +58,9 @@ public class AutoAttachRemovedCommand implements TransactCommand {
                 TransactUtils.extractUpdated(events, OvsdbNodeAugmentation.class));
     }
 
-    private void execute(final TransactionBuilder transaction, final BridgeOperationalState state,
-                         final Map<InstanceIdentifier<OvsdbNodeAugmentation>, OvsdbNodeAugmentation> original,
-                         final Map<InstanceIdentifier<OvsdbNodeAugmentation>, OvsdbNodeAugmentation> updated) {
+    private static void execute(final TransactionBuilder transaction, final BridgeOperationalState state,
+                                final Map<InstanceIdentifier<OvsdbNodeAugmentation>, OvsdbNodeAugmentation> original,
+                                final Map<InstanceIdentifier<OvsdbNodeAugmentation>, OvsdbNodeAugmentation> updated) {
 
         for (final Map.Entry<InstanceIdentifier<OvsdbNodeAugmentation>, OvsdbNodeAugmentation> originalEntry :
                 original.entrySet()) {
@@ -93,7 +93,7 @@ public class AutoAttachRemovedCommand implements TransactCommand {
         }
     }
 
-    private void deleteAutoAttach(final TransactionBuilder transaction,
+    private static void deleteAutoAttach(final TransactionBuilder transaction,
             final InstanceIdentifier<OvsdbNodeAugmentation> ovsdbNodeIid,
             final Uuid autoattachUuid) {