From 3e01033dfe46dbeeab8039ddd3c6b8f9025b2262 Mon Sep 17 00:00:00 2001 From: Munir Ahmad Date: Sat, 24 Feb 2018 12:52:03 -0500 Subject: Remove the unnecessary toString Change-Id: I32f5d3674583db900f7aa9b45af9fba0f8d9c06c Issue-ID: SO-437 Signed-off-by: Munir Ahmad --- .../src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bpmn/MSOCoreBPMN') 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()); -- cgit 1.2.3-korg