Fix for Sonar major issues 37/13737/2
authorSwapnilPathak <SP00494485@techmahindra.com>
Wed, 20 Sep 2017 07:34:50 +0000 (13:04 +0530)
committerPamela Dragosh <pdragosh@research.att.com>
Wed, 20 Sep 2017 10:53:32 +0000 (10:53 +0000)
Add override annotation above the method signature.

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

index f74b626..5effa0c 100644 (file)
@@ -30,7 +30,8 @@ public enum ControlLoopEventStatus {
        private ControlLoopEventStatus(String status) {
                this.status = status;
        }
-       
+
+       @Override
        public String toString() {
                return this.status;
        }