File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
spring-web/src/main/java/org/springframework/http/codec Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 50
50
* @author Sebastien Deleuze
51
51
* @author Rossen Stoyanchev
52
52
* @author Brian Clozel
53
+ * @author Sam Brannen
53
54
* @since 5.0
54
55
* @param <T> the type of objects in the input stream
55
56
*/
@@ -171,7 +172,7 @@ private boolean isStreamingMediaType(@Nullable MediaType contentType) {
171
172
}
172
173
for (MediaType mediaType : ((HttpMessageEncoder <?>) this .encoder ).getStreamingMediaTypes ()) {
173
174
if (contentType .isCompatibleWith (mediaType ) &&
174
- contentType .getParameters ().entrySet ().containsAll (mediaType .getParameters ().keySet ())) {
175
+ contentType .getParameters ().keySet ().containsAll (mediaType .getParameters ().keySet ())) {
175
176
return true ;
176
177
}
177
178
}
You can’t perform that action at this time.
0 commit comments