Sho SHIMIZU
Committed by Gerrit Code Review

Remove unnecessary boxing

Change-Id: I37c6490aef820ad2e3cd480cc90d9b6d988c45bd
...@@ -555,7 +555,7 @@ public class FlowRuleManager ...@@ -555,7 +555,7 @@ public class FlowRuleManager
555 555
556 556
557 for (DeviceId deviceId : perDeviceBatches.keySet()) { 557 for (DeviceId deviceId : perDeviceBatches.keySet()) {
558 - Long id = idGenerator.getNewId(); 558 + long id = idGenerator.getNewId();
559 final FlowRuleBatchOperation b = new FlowRuleBatchOperation(perDeviceBatches.get(deviceId), 559 final FlowRuleBatchOperation b = new FlowRuleBatchOperation(perDeviceBatches.get(deviceId),
560 deviceId, id); 560 deviceId, id);
561 pendingFlowOperations.put(id, this); 561 pendingFlowOperations.put(id, this);
......