Fix unchecked conversion warnings
[appc.git] / appc-dg-util / appc-dg-util-bundle / src / main / java / org / openecomp / appc / dg / util / impl / InputParameterValidationImpl.java
index aec1ac2..c59e22b 100644 (file)
@@ -113,7 +113,7 @@ public class InputParameterValidationImpl implements InputParameterValidation
     }
 
 
-    private Map getValueFromContext(SvcLogicContext context) {
+    private Map<String, String> getValueFromContext(SvcLogicContext context) {
         Set<String> keys = context.getAttributeKeySet();
         Map<String, String> params = new HashMap<String, String>();
         StringBuilder builder = new StringBuilder();