Use diamond operator to simplify the code

Change-Id: Ia1e02131817a94e2ca86a0bb51924e11d14742e0
This commit is contained in:
Sho SHIMIZU 2015-01-20 19:23:16 -08:00 committed by Gerrit Code Review
parent fce9d4c211
commit d4df608ff0

View File

@ -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);
}