From: Munir Ahmad Date: Sat, 24 Feb 2018 17:52:03 +0000 (-0500) Subject: Remove the unnecessary toString X-Git-Tag: v1.2.1~524^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=3e01033dfe46dbeeab8039ddd3c6b8f9025b2262;p=so.git Remove the unnecessary toString Change-Id: I32f5d3674583db900f7aa9b45af9fba0f8d9c06c Issue-ID: SO-437 Signed-off-by: Munir Ahmad --- diff --git a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java index b47d73f665..2612c383ab 100644 --- a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java +++ b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java @@ -388,7 +388,7 @@ public class JsonUtils { return 0; } else { if (rawValue instanceof Integer) { - msoLogger.debug("getJsonValue(): the raw value is an Integer Object=" + ((String) rawValue).toString()); + msoLogger.debug("getJsonValue(): the raw value is an Integer Object=" + ((String) rawValue)); return (Integer) rawValue; } else { msoLogger.debug("getJsonValue(): the raw value is NOT an Integer Object=" + rawValue.toString());