diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-01-15 23:36:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-01-15 23:36:03 +0000 |
commit | c7ebb39ee23233b0104d3a0f9b1f8fdd66911d18 (patch) | |
tree | 74c44ba251bbad512e6ea463e43af0662b901b1e | |
parent | 6d3cc4662712bb636b83f8a4da9938afe192a64a (diff) | |
parent | b31eb9787fd4171325ef39d887e2c0feb58e9927 (diff) |
Merge "Local and Class variable name conflict resolved"
-rw-r--r-- | POLICY-SDK-APP/src/main/java/org/onap/policy/controller/AutoPushController.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/POLICY-SDK-APP/src/main/java/org/onap/policy/controller/AutoPushController.java b/POLICY-SDK-APP/src/main/java/org/onap/policy/controller/AutoPushController.java index d308e7eda..50b9d6923 100644 --- a/POLICY-SDK-APP/src/main/java/org/onap/policy/controller/AutoPushController.java +++ b/POLICY-SDK-APP/src/main/java/org/onap/policy/controller/AutoPushController.java @@ -359,8 +359,8 @@ public class AutoPushController extends RestrictedBaseController{ policyContainer = new PDPPolicyContainer(group); if(removePolicyData.size() > 0){ for(int i = 0 ; i < removePolicyData.size(); i++){ - String data = removePolicyData.get(i).toString(); - this.policyContainer.removeItem(data); + String polData = removePolicyData.get(i).toString(); + this.policyContainer.removeItem(polData); } Set<PDPPolicy> changedPolicies = new HashSet<>(); changedPolicies.addAll((Collection<PDPPolicy>) this.policyContainer.getItemIds()); @@ -395,4 +395,4 @@ public class AutoPushController extends RestrictedBaseController{ return null; } -}
\ No newline at end of file +} |