Skip to content

Commit

Permalink
Fix back port
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Jan 31, 2025
1 parent 78060eb commit d3590fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/apache/catalina/core/ApplicationHttpRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ void parseParameters() {
}

Map<String,String[]> requestParameters = getRequest().getParameterMap();
if (requestParameters instanceof ParameterMap<String,String[]>) {
if (requestParameters instanceof ParameterMap<?,?>) {
parameters = new ParameterMap<>((ParameterMap<String,String[]>) requestParameters);
} else {
parameters = new ParameterMap<>(requestParameters);
Expand Down

0 comments on commit d3590fc

Please sign in to comment.