Sho SHIMIZU
Committed by Gerrit Code Review

Use diamond operator to simplify the code

Change-Id: Ia1e02131817a94e2ca86a0bb51924e11d14742e0
......@@ -449,7 +449,7 @@ public class FlowRuleManager
Multimap<DeviceId, FlowRuleBatchEntry> batches) {
this.futures = futures;
this.batches = batches;
state = new AtomicReference<FlowRuleManager.BatchState>();
state = new AtomicReference<>();
state.set(BatchState.STARTED);
}
......