mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
Simplify the code by using the constructor initializing a reference
Change-Id: I62335690903fe21cd3400e81e20833b4a1bb7b59
This commit is contained in:
parent
d4df608ff0
commit
d58c5b742f
@ -449,8 +449,7 @@ public class FlowRuleManager
|
|||||||
Multimap<DeviceId, FlowRuleBatchEntry> batches) {
|
Multimap<DeviceId, FlowRuleBatchEntry> batches) {
|
||||||
this.futures = futures;
|
this.futures = futures;
|
||||||
this.batches = batches;
|
this.batches = batches;
|
||||||
state = new AtomicReference<>();
|
this.state = new AtomicReference<>(BatchState.STARTED);
|
||||||
state.set(BatchState.STARTED);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user