From: Arundathi Patil Date: Fri, 30 Nov 2018 10:09:16 +0000 (+0530) Subject: Sonar Fix: ResourceDictionary.java X-Git-Tag: 0.4.2~160^2~78^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=f6fa604cae4a0d5ac6c565af3f411abebd900e3d;p=ccsdk%2Fcds.git Sonar Fix: ResourceDictionary.java Fixed sonar issues/code-smells across this file Issue-ID: CCSDK-772 Change-Id: If7bbf087a50ede882bd469d60c660ccf60bc5521 Signed-off-by: Arundathi Patil --- diff --git a/ms/controllerblueprints/modules/service/src/main/java/org/onap/ccsdk/apps/controllerblueprints/service/domain/ResourceDictionary.java b/ms/controllerblueprints/modules/service/src/main/java/org/onap/ccsdk/apps/controllerblueprints/service/domain/ResourceDictionary.java index 42c8e83b2..5352d9c96 100644 --- a/ms/controllerblueprints/modules/service/src/main/java/org/onap/ccsdk/apps/controllerblueprints/service/domain/ResourceDictionary.java +++ b/ms/controllerblueprints/modules/service/src/main/java/org/onap/ccsdk/apps/controllerblueprints/service/domain/ResourceDictionary.java @@ -78,7 +78,7 @@ public class ResourceDictionary implements Serializable { @Override public String toString() { - String buffer = "[" + ", name = " + name + + return "[" + ", name = " + name + ", dataType = " + dataType + ", entrySchema = " + entrySchema + ", definition =" + definition + @@ -87,7 +87,6 @@ public class ResourceDictionary implements Serializable { ", tags = " + tags + ", creationDate = " + creationDate + "]"; - return buffer; } public String getName() {