diff options
author | SwapnilPathak <SP00494485@techmahindra.com> | 2017-09-20 17:47:33 +0530 |
---|---|---|
committer | SwapnilPathak <SP00494485@techmahindra.com> | 2017-09-20 17:47:51 +0530 |
commit | 5859a939392788da5722e3caef2a043dab3d7c28 (patch) | |
tree | 626838d7a4b07808761312a927ca160a61796220 /controlloop/common | |
parent | e367918747050eb3c989038d52dd80ad096ad3ce (diff) |
Fix for Sonar major issues
Add override annotation above the method signature.
Issue-ID: POLICY-248
Change-Id: I8086a6fc1dc24719c3ffd3785a12c086ab556ae9
Signed-off-by: SwapnilPathak <SP00494485@techmahindra.com>
Diffstat (limited to 'controlloop/common')
-rw-r--r-- | controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java b/controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java index 5417baed9..29f53c8fa 100644 --- a/controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java +++ b/controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java @@ -37,7 +37,8 @@ public enum ControlLoopNotificationType { this.type = type; } - public String toString() { + @Override + public String toString() { return this.type; } |