mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
fc1ff88ede
Prior to this commit, the `StringHttpMessageConverter` would perform a flush after writing the body, via `StreamUtils#copy`. This operation is not needed as a flush is already performed by the abstract class. Flush calls by HTTP message converters is being reconsidered altogether in gh-35427, but we should first remove this extra operation. Closes gh-36065