(String token)
| 1083 | } |
| 1084 | |
| 1085 | private static String normalizeToken(String token) { |
| 1086 | checkArgument(TOKEN_MATCHER.matchesAllOf(token)); |
| 1087 | checkArgument(!token.isEmpty()); |
| 1088 | return Ascii.toLowerCase(token); |
| 1089 | } |
| 1090 | |
| 1091 | private static String normalizeParameterValue(String attribute, String value) { |
| 1092 | checkNotNull(value); // for GWT |
no test coverage detected