Remove redundant declaration of extending object 11/34611/2
authorMunir Ahmad <munir.ahmad@bell.ca>
Thu, 8 Mar 2018 00:25:20 +0000 (19:25 -0500)
committerMunir Ahmad <munir.ahmad@bell.ca>
Thu, 8 Mar 2018 02:07:41 +0000 (02:07 +0000)
Change-Id: Iee7e4fc93dd82cab27986335560a41000851c33d
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
adapters/mso-adapter-utils/src/main/java/org/openecomp/mso/openstack/utils/MsoHeatUtils.java
adapters/mso-vnf-adapter/src/main/java/org/openecomp/mso/vdu/utils/VduPlugin.java
bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/bpmn/common/BPMNUtil.java

index 699bd7c..6862492 100644 (file)
@@ -143,7 +143,7 @@ public class MsoHeatUtils extends MsoCommonUtils {
                                   String tenantId,
                                   String stackName,
                                   String heatTemplate,
-                                  Map <String, ? extends Object> stackInputs,
+                                  Map <String, ?> stackInputs,
                                   boolean pollForCompletion,
                                   int timeoutMinutes) throws MsoException {
         // Just call the new method with the environment & files variable set to null
@@ -165,7 +165,7 @@ public class MsoHeatUtils extends MsoCommonUtils {
                                   String tenantId,
                                   String stackName,
                                   String heatTemplate,
-                                  Map <String, ? extends Object> stackInputs,
+                                  Map <String, ?> stackInputs,
                                   boolean pollForCompletion,
                                   int timeoutMinutes,
                                   String environment) throws MsoException {
@@ -188,7 +188,7 @@ public class MsoHeatUtils extends MsoCommonUtils {
                                   String tenantId,
                                   String stackName,
                                   String heatTemplate,
-                                  Map <String, ? extends Object> stackInputs,
+                                  Map <String, ?> stackInputs,
                                   boolean pollForCompletion,
                                   int timeoutMinutes,
                                   String environment,
@@ -211,7 +211,7 @@ public class MsoHeatUtils extends MsoCommonUtils {
                                   String tenantId,
                                   String stackName,
                                   String heatTemplate,
-                                  Map <String, ? extends Object> stackInputs,
+                                  Map <String, ?> stackInputs,
                                   boolean pollForCompletion,
                                   int timeoutMinutes,
                                   String environment,
@@ -275,7 +275,7 @@ public class MsoHeatUtils extends MsoCommonUtils {
                                   String tenantId,
                                   String stackName,
                                   String heatTemplate,
-                                  Map <String, ? extends Object> stackInputs,
+                                  Map <String, ?> stackInputs,
                                   boolean pollForCompletion,
                                   int timeoutMinutes,
                                   String environment,
index 856b713..2118eec 100755 (executable)
@@ -88,7 +88,7 @@ public interface VduPlugin {
                                String tenantId,
                                String vduInstanceName,
                                VduBlueprint vduBlueprint,
-                               Map <String, ? extends Object> inputs,
+                               Map <String, ?> inputs,
                                String environmentFile,
                                int timeoutMinutes,
                                boolean suppressBackout)
@@ -198,7 +198,7 @@ public interface VduPlugin {
                                String tenantId,
                                String vduInstanceId,
                                VduBlueprint vduBlueprint,
-                               Map <String, ? extends Object> inputs,
+                               Map <String, ?> inputs,
                                String environmentFile,
                                int timeoutMinutes)
                        throws MsoException;
index 9fcde31..0bb5186 100644 (file)
@@ -68,7 +68,7 @@ public class BPMNUtil {
        }\r
 \r
        @SuppressWarnings("unchecked")\r
-       public static <T extends Object> T getRawVariable(ProcessEngineServices processEngineServices, String processDefinitionID, String name) {\r
+       public static <T> T getRawVariable(ProcessEngineServices processEngineServices, String processDefinitionID, String name) {\r
                String pID = getProcessInstanceId(processEngineServices,\r
                                processDefinitionID);\r
                assertProcessInstanceFinished(processEngineServices, pID);\r