(int c)
| 217 | } |
| 218 | |
| 219 | private static boolean isUnreserved(int c) { |
| 220 | return isAlpha(c) || isDigit(c) || c == '-' || c == '.' || c == '_' || c == '~'; |
| 221 | } |
| 222 | |
| 223 | private static boolean isReserved(int c) { |
| 224 | return isGenericDelimiter(c) || isSubDelimiter(c); |
no test coverage detected