Sho SHIMIZU
Committed by Gerrit Code Review

Use diamond operator to simplify the code

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