gnodet commented on code in PR #2955:
URL: https://github.com/apache/cxf/pull/2955#discussion_r2930405718
##########
rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/utils/FormUtils.java:
##########
@@ -306,7 +306,9 @@ private static void checkNumberOfParts(Message m, int
numberOfParts) {
}
public static boolean isFormPostRequest(Message m) {
- return
MediaType.APPLICATION_FORM_URLENCODED.equals(m.get(Message.CONTENT_TYPE))
+ String contentType = (String) m.get(Message.CONTENT_TYPE);
Review Comment:
You're right, this is unrelated to the Servlet cleanup. I've split it out
into a separate PR: #2968
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]