Make field final
Change-Id: I19f2ad98e56352570478a66f896c1e9c6a3573e5
Showing
1 changed file
with
1 additions
and
2 deletions
... | @@ -129,8 +129,7 @@ public class FlowRuleManager | ... | @@ -129,8 +129,7 @@ public class FlowRuleManager |
129 | 129 | ||
130 | private IdGenerator idGenerator; | 130 | private IdGenerator idGenerator; |
131 | 131 | ||
132 | - private Map<Long, FlowOperationsProcessor> pendingFlowOperations | 132 | + private final Map<Long, FlowOperationsProcessor> pendingFlowOperations = new ConcurrentHashMap<>(); |
133 | - = new ConcurrentHashMap<>(); | ||
134 | 133 | ||
135 | @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY) | 134 | @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY) |
136 | protected FlowRuleStore store; | 135 | protected FlowRuleStore store; | ... | ... |
-
Please register or login to post a comment