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