(Charset charset)
| 103 | } |
| 104 | |
| 105 | private String encoding(Charset charset) { |
| 106 | if (charset == null) return null; |
| 107 | |
| 108 | return charset.name(); |
| 109 | } |
| 110 | |
| 111 | private String locale(Map<String, Collection<String>> headers) { |
| 112 | if (!headers.containsKey(HttpHeaders.CONTENT_LANGUAGE)) return null; |
no test coverage detected