SPR-7729 - MediaType incorrectly calls the toString() method instead of name() method causing RestTemplate on Android to fail
This commit is contained in:
parent
157623b47f
commit
465e093bfb
|
|
@ -215,7 +215,7 @@ public class MediaType implements Comparable<MediaType> {
|
||||||
* @throws IllegalArgumentException if any of the parameters contain illegal characters
|
* @throws IllegalArgumentException if any of the parameters contain illegal characters
|
||||||
*/
|
*/
|
||||||
public MediaType(String type, String subtype, Charset charSet) {
|
public MediaType(String type, String subtype, Charset charSet) {
|
||||||
this(type, subtype, Collections.singletonMap(PARAM_CHARSET, charSet.toString()));
|
this(type, subtype, Collections.singletonMap(PARAM_CHARSET, charSet.name()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue