From: Determe, Sebastien (sd378r) Date: Fri, 6 Oct 2017 12:05:10 +0000 (+0200) Subject: Remove useless method X-Git-Tag: v1.1.0~37 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=clamp.git;a=commitdiff_plain;h=878b157b7e3a0784015a8def9f2daa4588215ebf Remove useless method One method one private and not used anymore in the code so it has been removed Change-Id: Id6754eb446a781b691184ace07a68ce26c8ed684 Issue-ID: CLAMP-54 Signed-off-by: Determe, Sebastien (sd378r) --- diff --git a/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java b/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java index 9c3f2617..cb8af0a1 100644 --- a/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java +++ b/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java @@ -124,6 +124,11 @@ public class SdcReq { deployJsonNode.set("configuration", serviceConf); propsObject.put("deployment_JSON", deployJsonNode.toString()); blueprint = yaml.dump(loadedYaml); + // To remove new lines in blueprint for deployment_json + String[] deploymentJson = blueprint.split(" deployment_JSON:"); + String beforeJson = deploymentJson[0]; + String afterJson = deploymentJson[1].replaceAll("\\s+", " "); + blueprint = beforeJson + " deployment_JSON:" + afterJson; logger.info("value of updated Yaml File:" + blueprint); return blueprint; @@ -207,7 +212,6 @@ public class SdcReq { String svcUrl = baseUrl + "/" + serviceUUID + "/resourceInstances/" + normalizedResourceInstanceName + "/artifacts"; urlList.add(svcUrl); - } } }