diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-02-28 06:14:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-28 06:14:28 +0000 |
commit | 71343e773580313db2389c39f2d35439959df57a (patch) | |
tree | 1554218463fca9ee3959e31223c03aca79586778 /bpmn | |
parent | 91bce4a6f185605224c8c116e5393ed5d13fe3a6 (diff) | |
parent | 3e01033dfe46dbeeab8039ddd3c6b8f9025b2262 (diff) |
Merge "Remove the unnecessary toString"
Diffstat (limited to 'bpmn')
-rw-r--r-- | bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/json/JsonUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
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());
|