Java 1.5 - is there a way to get rid of this warning?
I have a function within my class:
publicvoid handleParameters(Map<String, String[]> paramMap){
}
I am calling it with an HttpServletRequest object using getParameterMap() method
handleParameters(request.getParameterMap())
object (returns a Map with keys as String and values as String[]),
which gives the warning that type Map needs unchecked conversion to conform to Map<String, String[]>
Is there anyway around this?
I mean it does compile okay but I was trying to clean up any warnings that can be eliminated.

