From 6345bc31e13829b84115b3f1de9e384b1f91c2ab Mon Sep 17 00:00:00 2001 From: Piotr Marcinkiewicz Date: Tue, 19 Jan 2021 16:11:54 +0100 Subject: Add PropertiesServiceTest - add test class - remove unused vars in PropertiesService Issue-ID: DCAEGEN2-1179 Signed-off-by: Piotr Marcinkiewicz Change-Id: Ic266f62097ed97cfd3aa5bac18609bb8730e27e0 --- .../org/onap/blueprintgenerator/service/common/PropertiesService.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'mod/bpgenerator/onap/src/main/java') diff --git a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/PropertiesService.java b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/PropertiesService.java index 3c36cca..be79b25 100644 --- a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/PropertiesService.java +++ b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/PropertiesService.java @@ -88,7 +88,6 @@ public class PropertiesService { image.setBpInputName("image"); properties.setImage(image); - LinkedHashMap img = new LinkedHashMap<>(); inputs.put( "image", blueprintHelperService.createStringInput(onapComponentSpec.getArtifacts()[0].getUri())); @@ -97,7 +96,6 @@ public class PropertiesService { location.setBpInputName("location_id"); properties.setLocation_id(location); - LinkedHashMap locMap = new LinkedHashMap(); inputs.put("location_id", blueprintHelperService.createStringInput(Constants.EMPTY_VALUE)); properties.setLog_info(onapComponentSpec.getAuxilary().getLog_info()); -- cgit 1.2.3-korg