From: shashikanth Date: Tue, 26 Sep 2017 13:07:13 +0000 (+0530) Subject: Added @Override annotation to method signature X-Git-Tag: v1.1.0~215^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e56e410b0a3ef29ef7cfb6ca55ac4fbe23479b4a;p=so.git Added @Override annotation to method signature Fix major sonar issues in so module https://sonar.onap.org/component_issues?id=org.openecomp.so%3Aso#resolved=false|severities=MAJOR|rules=squid%3AS1161 Add the "@Override" annotation above this method signature Issue-Id: APPC-186 Change-Id: I63b6229cc3b84b2f77f8d391e823933aaab05dd0 Signed-off-by: shashikanth.vh --- diff --git a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/WorkflowException.java b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/WorkflowException.java index 48f317d5d6..21653e26c3 100644 --- a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/WorkflowException.java +++ b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/WorkflowException.java @@ -69,6 +69,7 @@ public class WorkflowException implements Serializable { /** * Returns a string representation of this object. */ + @Override public String toString() { StringBuilder out = new StringBuilder(); out.append(getClass().getSimpleName());