【fix sonar】HttpUtils文件

This commit is contained in:
梁琦涛
2023-03-15 18:03:13 +08:00
parent 0fae0c2079
commit 182c33bab7
@@ -108,7 +108,7 @@ public class HttpUtils {
* @param request
* @return
*/
public static Map getAllRequestParam(final HttpServletRequest request) throws IOException {
public static Map<String,String> getAllRequestParam(final HttpServletRequest request) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(request.getInputStream()));
String str;