mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
86c52a842f
Prior to this commit, if the user supplied a comma-separated list such as "en, it" as the Content-Language header value to MockHttpServletResponse's setHeader() method, only the first language was actually set in the response's Content-Language header (e.g., "en"). This commit ensures that all supplied content languages are set in the response's Content-Language header. Closes gh-25281