diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-09-28 04:40:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-28 04:40:23 +0000 |
commit | 6700a793821cebcafe28b124b49dcabff0eb4caa (patch) | |
tree | 384624683272d81cba033e6e5863275f09662396 /controlloop/common/model-impl | |
parent | 6c961a99cf5ebb10776e0a961bf2196f03835d0d (diff) | |
parent | 7e3076dc28f4265db6b3bc6d1b693fe7801e80cd (diff) |
Merge "Fix major sonar issues"
Diffstat (limited to 'controlloop/common/model-impl')
-rw-r--r-- | controlloop/common/model-impl/sdc/src/main/java/org/onap/policy/sdc/ResourceType.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/controlloop/common/model-impl/sdc/src/main/java/org/onap/policy/sdc/ResourceType.java b/controlloop/common/model-impl/sdc/src/main/java/org/onap/policy/sdc/ResourceType.java index ee2fc89fd..c4dbfffa4 100644 --- a/controlloop/common/model-impl/sdc/src/main/java/org/onap/policy/sdc/ResourceType.java +++ b/controlloop/common/model-impl/sdc/src/main/java/org/onap/policy/sdc/ResourceType.java @@ -33,7 +33,8 @@ public enum ResourceType { this.type = type; } - public String toString() { + @Override + public String toString() { return this.type; } |