Sho SHIMIZU
Committed by Gerrit Code Review

Use lambda expression to reduce lines

Change-Id: Ie8994f79acc6b2f4204f62aca1fe6112baf578cd
......@@ -559,12 +559,7 @@ public class FlowRuleManager
final FlowRuleBatchOperation b = new FlowRuleBatchOperation(perDeviceBatches.get(deviceId),
deviceId, id);
pendingFlowOperations.put(id, this);
deviceInstallers.submit(new Runnable() {
@Override
public void run() {
store.storeBatch(b);
}
});
deviceInstallers.submit(() -> store.storeBatch(b));
}
}
......