(String contentTypeValue)
| 129 | } |
| 130 | |
| 131 | private Charset getCharset(String contentTypeValue) { |
| 132 | val matcher = CHARSET_PATTERN.matcher(contentTypeValue); |
| 133 | return matcher.find() ? Charset.forName(matcher.group(1)) : UTF_8; |
| 134 | } |
| 135 | } |
no outgoing calls