(int c)
| 221 | } |
| 222 | |
| 223 | private static boolean isReserved(int c) { |
| 224 | return isGenericDelimiter(c) || isSubDelimiter(c); |
| 225 | } |
| 226 | |
| 227 | private boolean isPchar(int c) { |
| 228 | return isUnreserved(c) || isSubDelimiter(c) || c == ':' || c == '@'; |
no test coverage detected