diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-10-02 15:28:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-02 15:28:22 +0000 |
commit | 50e2a74626a2f216e705c72ddb3a7e7e827756f1 (patch) | |
tree | 2ee17a0aa574ff7d65f0d3b033515f06b711eddb /bpmn/MSOCommonBPMN/src/main/java/org/openecomp | |
parent | 83f2cdbce7270b822b3b796e27e7eb96e8e63e57 (diff) | |
parent | b078fa104454fccff76584f5b119864c5d80cb09 (diff) |
Merge "Fix major sonar issues"
Diffstat (limited to 'bpmn/MSOCommonBPMN/src/main/java/org/openecomp')
-rw-r--r-- | bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/DeleteVnfNotification.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/DeleteVnfNotification.java b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/DeleteVnfNotification.java index 063f75679c..651fd1aca7 100644 --- a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/DeleteVnfNotification.java +++ b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/DeleteVnfNotification.java @@ -156,10 +156,10 @@ public class DeleteVnfNotification { * @return String type (deleteVnfNotification)
*/
-
+ @Override
public String toString() {
- String deleteVnfNotification = "";
- if (exception==null) {
+ String deleteVnfNotification;
+ if (exception == null) {
deleteVnfNotification = "<ns2:deleteVnfNotification xmlns:ns2=\"http://org.openecomp.mso/vnfNotify\"" + '\n' +
" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" + '\n' +
" <messageId>"+messageId+"</messageId>" + '\n' +
|