Remove useless code in test 27/14627/1
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Fri, 22 Sep 2017 13:50:19 +0000 (15:50 +0200)
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Fri, 22 Sep 2017 14:04:11 +0000 (16:04 +0200)
Some variables were created and not used, this has been removed

Change-Id: I40f28f4a991989b3759b2adf8842cebcfd9ac207
Issue-ID: CLAMP-54
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
src/test/java/org/onap/clamp/clds/it/PropJsonBuilderIT.java

index 525f9cb..cd626dd 100644 (file)
@@ -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();
     }