aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCoreBPMN
diff options
context:
space:
mode:
authorshashikanth <shashikanth.vh@huawei.com>2017-09-26 18:37:13 +0530
committershashikanth <shashikanth.vh@huawei.com>2017-09-26 18:37:14 +0530
commite56e410b0a3ef29ef7cfb6ca55ac4fbe23479b4a (patch)
tree167c8925c0a846c862bb91e155d206549563d50b /bpmn/MSOCoreBPMN
parent00f6a9c613096e3d4623b8e8486992be727d92da (diff)
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 <shashikanth.vh@huawei.com>
Diffstat (limited to 'bpmn/MSOCoreBPMN')
-rw-r--r--bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/WorkflowException.java1
1 files changed, 1 insertions, 0 deletions
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());