Fix for Sonar major issues 71/13871/1
authorSwapnilPathak <SP00494485@techmahindra.com>
Wed, 20 Sep 2017 12:17:33 +0000 (17:47 +0530)
committerSwapnilPathak <SP00494485@techmahindra.com>
Wed, 20 Sep 2017 12:17:51 +0000 (17:47 +0530)
Add override annotation above the method signature.

Issue-ID: POLICY-248
Change-Id: I8086a6fc1dc24719c3ffd3785a12c086ab556ae9
Signed-off-by: SwapnilPathak <SP00494485@techmahindra.com>
controlloop/common/model-impl/events/src/main/java/org/onap/policy/controlloop/ControlLoopNotificationType.java

index 5417bae..29f53c8 100644 (file)
@@ -37,7 +37,8 @@ public enum ControlLoopNotificationType {
                this.type = type;
        }
        
-       public String   toString() {
+        @Override
+       public String toString() {
                return this.type;
        }