diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2023-10-04 16:13:59 +0100 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2023-10-04 16:14:33 +0100 |
commit | b6d09ef9da41191199f2da7958d5b418ed2da8d9 (patch) | |
tree | 0a14755192f1418ab4c14e06858d0993a090bb40 /feature-pooling-dmaap | |
parent | 396f60280265a37379916ad12752a94691118f65 (diff) |
Remove AAF from drools-pdp
Issue-ID: POLICY-4592
Change-Id: Ibe7fb63017f862bdab4a80444a00324040b1ab87
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'feature-pooling-dmaap')
-rw-r--r-- | feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/state/QueryState.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/state/QueryState.java b/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/state/QueryState.java index ea74f03a..3e6f9d58 100644 --- a/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/state/QueryState.java +++ b/feature-pooling-dmaap/src/main/java/org/onap/policy/drools/pooling/state/QueryState.java @@ -3,6 +3,7 @@ * ONAP * ================================================================================ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,7 +33,7 @@ import org.slf4j.LoggerFactory; /** * The Query state. In this state, the host waits for the other hosts to identify * themselves. Eventually, a leader should come forth. If not, it will transition to the - * active or inactive state, depending on whether or not it has an assignment in the + * active or inactive state, depending on whether it has an assignment in the * current bucket assignments. The other possibility is that it may <i>become</i> the * leader, in which case it will also transition to the active state. */ @@ -43,7 +44,7 @@ public class QueryState extends ProcessingState { /** * Hosts that have sent an "Identification" message. Always includes this host. */ - private TreeSet<String> alive = new TreeSet<>(); + private final TreeSet<String> alive = new TreeSet<>(); /** * {@code True} if we saw our own Identification method, {@code false} otherwise. |