bug 6579 removed boilerplate code
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / PhysicalPortUpdateCommand.java
index 3ecdd600764ef8d6ee73ca44a5cc9efec61bc259..68ab9df57531700a5256677d4d4dfefa497b00ce 100644 (file)
@@ -61,7 +61,7 @@ public class PhysicalPortUpdateCommand extends AbstractTransactCommand {
             }
         }
         Map<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>> updateds =
-                extractUpdated(getChanges(),HwvtepPhysicalPortAugmentation.class);
+                extractUpdatedPorts(getChanges(), HwvtepPhysicalPortAugmentation.class);
         if (!updateds.isEmpty()) {
             for (Entry<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>> updated:
                 updateds.entrySet()) {
@@ -217,7 +217,7 @@ public class PhysicalPortUpdateCommand extends AbstractTransactCommand {
         return result;
     }
 
-    private Map<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>> extractUpdated(
+    private Map<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>> extractUpdatedPorts(
             Collection<DataTreeModification<Node>> changes, Class<HwvtepPhysicalPortAugmentation> class1) {
         Map<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>> result
             = new HashMap<InstanceIdentifier<Node>, List<HwvtepPhysicalPortAugmentation>>();