diff options
author | sharath reddy <bs.reddy@huawei.com> | 2022-03-23 21:22:21 +0530 |
---|---|---|
committer | sharath reddy <bs.reddy@huawei.com> | 2022-03-23 21:29:38 +0530 |
commit | f439543779cf2dfac0b68443aea921c55983bf48 (patch) | |
tree | 74dee9739cd3e202b8a85360d5399a0cb1f2fc23 /profiles | |
parent | 9df5c4d3e3e7b72b54de212a4a97ef18e5930948 (diff) |
Fixed Minor Code Smells issues "Deprecated JsonParser"
Issue-ID: CLI-439
Signed-off-by: sharath reddy <bs.reddy@huawei.com>
Change-Id: I49fdc2fe1aa48ae78317aba94fdd7f0232334860
Signed-off-by: sharath reddy <bs.reddy@huawei.com>
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/http/src/main/java/org/onap/cli/fw/http/utils/OnapCommandHttpUtils.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/profiles/http/src/main/java/org/onap/cli/fw/http/utils/OnapCommandHttpUtils.java b/profiles/http/src/main/java/org/onap/cli/fw/http/utils/OnapCommandHttpUtils.java index dcc3082d..7780701c 100644 --- a/profiles/http/src/main/java/org/onap/cli/fw/http/utils/OnapCommandHttpUtils.java +++ b/profiles/http/src/main/java/org/onap/cli/fw/http/utils/OnapCommandHttpUtils.java @@ -304,10 +304,9 @@ public class OnapCommandHttpUtils { } public static String normalizeJson(String json) throws OnapCommandHttpInvalidRequestBody { - JsonParser jsonParser = new JsonParser(); JsonElement node; try { - node = jsonParser.parse(json); + node = JsonParser.parseString(json); normalizeJson(node); return gson.toJson(node); } catch (Exception e) { //NOSONAR |