diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-10-01 20:42:36 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2018-10-01 20:42:42 -0400 |
commit | 98bf012459c846d1c3906a5d1ead73cf26b8e195 (patch) | |
tree | 5f309d4ff08067b90195afbcfd986d1c67305930 /controlloop/common/policy-yaml/src/main | |
parent | 320ff21040c901d4886fdfabdbc2708e3877a37c (diff) |
Fix remaining sonar
Mostly moving variables to their right spot.
Issue-ID: POLICY-1129
Change-Id: Iccc084bbb404ffd51bdd0b26b5f8c373c6142fb1
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'controlloop/common/policy-yaml/src/main')
-rw-r--r-- | controlloop/common/policy-yaml/src/main/java/org/onap/policy/controlloop/policy/guard/ControlLoopGuard.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/controlloop/common/policy-yaml/src/main/java/org/onap/policy/controlloop/policy/guard/ControlLoopGuard.java b/controlloop/common/policy-yaml/src/main/java/org/onap/policy/controlloop/policy/guard/ControlLoopGuard.java index 66ac3e612..cad32c273 100644 --- a/controlloop/common/policy-yaml/src/main/java/org/onap/policy/controlloop/policy/guard/ControlLoopGuard.java +++ b/controlloop/common/policy-yaml/src/main/java/org/onap/policy/controlloop/policy/guard/ControlLoopGuard.java @@ -32,6 +32,11 @@ public class ControlLoopGuard { //DO Nothing Empty Constructor } + public ControlLoopGuard(ControlLoopGuard clGuard) { + this.guard = new Guard(); + this.guards = new LinkedList<>(clGuard.guards); + } + public Guard getGuard() { return guard; } @@ -48,11 +53,6 @@ public class ControlLoopGuard { this.guards = guards; } - public ControlLoopGuard(ControlLoopGuard clGuard) { - this.guard = new Guard(); - this.guards = new LinkedList<>(clGuard.guards); - } - @Override public String toString() { return "Guard [guard=" + guard + ", GuardPolicies=" + guards + "]"; |