Removed unused variables 95/15895/1
authorrama-huawei <rama.subba.reddy.s@huawei.com>
Wed, 27 Sep 2017 09:58:43 +0000 (15:28 +0530)
committerrama-huawei <rama.subba.reddy.s@huawei.com>
Wed, 27 Sep 2017 09:58:43 +0000 (15:28 +0530)
Issue-Id:SO-118

Change-Id: I5db909a4c2bfb803c3d3647f30cfa4533c729148
Signed-off-by: rama-huawei <rama.subba.reddy.s@huawei.com>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/aai/entities/Results.java
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerClient.java

index 384ac25..48cfed8 100644 (file)
@@ -22,7 +22,7 @@ public class Results<T> {
        
     public List<T> getResult() {
         if (result == null) {
-               result = new ArrayList<T>();
+               result = new ArrayList<>();
         }
         return this.result;
     }
index e9752e0..7a157de 100644 (file)
@@ -43,15 +43,7 @@ public class ApplicationControllerClient {
 
     private static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
     
-       private static final int ACCEPT_SERIES = 100;
-       private static final int ERROR_SERIES = 200;
-       private static final int REJECT_SERIES = 300;
-       private static final int SUCCESS_SERIES = 400;
-       private static final int SUCCESS_STATUS = SUCCESS_SERIES + 0;
        private static final int PARTIAL_SERIES = 500;
-       private static final int PARTIAL_SUCCESS_STATUS = PARTIAL_SERIES + 0;
-
-       private final boolean useLCMBypass = false;
 
        private final String apiVer = "2.00";
        private final String originatorId = "MSO";