removed some unused imports 89/104689/1
authorRupinder <rupinsi1@in.ibm.com>
Mon, 30 Mar 2020 13:37:37 +0000 (19:07 +0530)
committerRupinder <rupinsi1@in.ibm.com>
Mon, 30 Mar 2020 13:37:43 +0000 (19:07 +0530)
Removed unused imports to lower the code smells

Issue-ID: USECASEUI-423
Change-Id: Ie5414ca2b576ec7f3a6279f6bfaf718cd9b495a3
Signed-off-by: Rupinder<rupinsi1@in.ibm.com>
server/src/main/java/org/onap/usecaseui/server/controller/lcm/OrchestratorController.java
server/src/main/java/org/onap/usecaseui/server/controller/lcm/ServiceInstanceController.java

index 46673ee..2d0eecc 100644 (file)
@@ -19,7 +19,6 @@ import org.onap.usecaseui.server.service.lcm.OrchestratorService;
 import org.onap.usecaseui.server.service.lcm.domain.aai.bean.AAIEsrNfvo;
 import org.springframework.context.annotation.EnableAspectJAutoProxy;
 import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.ResponseBody;
index 4f28041..1f6ee7e 100644 (file)
@@ -22,12 +22,8 @@ import java.util.Map;
 
 import javax.annotation.Resource;
 import javax.servlet.http.HttpServletRequest;
-import javax.websocket.server.PathParam;
-
-import org.onap.usecaseui.server.bean.ServiceBean;
 import org.onap.usecaseui.server.service.lcm.PackageDistributionService;
 import org.onap.usecaseui.server.service.lcm.ServiceInstanceService;
-import org.onap.usecaseui.server.service.lcm.ServiceLcmService;
 import org.onap.usecaseui.server.util.UuiCommonUtil;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -38,7 +34,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.ResponseBody;
 
-import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
 import com.fasterxml.jackson.core.JsonProcessingException;