From 878b157b7e3a0784015a8def9f2daa4588215ebf Mon Sep 17 00:00:00 2001 From: "Determe, Sebastien (sd378r)" Date: Fri, 6 Oct 2017 14:05:10 +0200 Subject: [PATCH] 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) --- src/main/java/org/onap/clamp/clds/client/req/SdcReq.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); - } } } -- 2.16.6