From: Determe, Sebastien (sd378r) Date: Fri, 22 Sep 2017 13:50:19 +0000 (+0200) Subject: Remove useless code in test X-Git-Tag: v1.1.0~66 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=clamp.git;a=commitdiff_plain;h=10efd56cf30699a2d241d2b8aef6d504faf3090d Remove useless code in test Some variables were created and not used, this has been removed Change-Id: I40f28f4a991989b3759b2adf8842cebcfd9ac207 Issue-ID: CLAMP-54 Signed-off-by: Determe, Sebastien (sd378r) --- diff --git a/src/test/java/org/onap/clamp/clds/it/PropJsonBuilderIT.java b/src/test/java/org/onap/clamp/clds/it/PropJsonBuilderIT.java index 525f9cb3..cd626dd6 100644 --- a/src/test/java/org/onap/clamp/clds/it/PropJsonBuilderIT.java +++ b/src/test/java/org/onap/clamp/clds/it/PropJsonBuilderIT.java @@ -62,12 +62,9 @@ public class PropJsonBuilderIT extends AbstractIT { @Before public void setUp() throws IOException { String url = refProp.getStringValue("sdc.serviceUrl"); - String catalogUrl = refProp.getStringValue("sdc.catalog.url"); String basicAuth = SdcReq.getSdcBasicAuth(refProp); System.out.println("value of string and basicAuth:" + url + basicAuth); - CldsSdcServiceDetail cldsservicedetail = new CldsSdcServiceDetail(); // cldsservicedetail.set - String globalProps = refProp.getStringValue("globalPropsTest"); globalPropsPartial = refProp.getStringValue("globalPropsPartialTest"); mapper = new ObjectMapper(); }