Hi i have done the following
String[]proffArray=request.getParameterValues("proffId");
List<String> proffIds=Arrays.asList(proffArray);
The above code is showing a warning. The warning is "Type safety: The expression of type List needs unchecked conversion to conform to List<String>". How to deal with this? instead of suppressing warning can we do anything?