(String token)
| 911 | } |
| 912 | |
| 913 | private static String normalizeToken(String token) { |
| 914 | checkArgument(TOKEN_MATCHER.matchesAllOf(token)); |
| 915 | return Ascii.toLowerCase(token); |
| 916 | } |
| 917 | |
| 918 | private static String normalizeParameterValue(String attribute, String value) { |
| 919 | return CHARSET_ATTRIBUTE.equals(attribute) ? Ascii.toLowerCase(value) : value; |
no test coverage detected