(int c)
| 203 | } |
| 204 | |
| 205 | private static boolean isSubDelimiter(int c) { |
| 206 | return (c == '!') |
| 207 | || (c == '$') |
| 208 | || (c == '&') |
| 209 | || (c == '\'') |
| 210 | || (c == '(') |
| 211 | || (c == ')') |
| 212 | || (c == '*') |
| 213 | || (c == '+') |
| 214 | || (c == ',') |
| 215 | || (c == ';') |
| 216 | || (c == '='); |
| 217 | } |
| 218 | |
| 219 | private static boolean isUnreserved(int c) { |
| 220 | return isAlpha(c) || isDigit(c) || c == '-' || c == '.' || c == '_' || c == '~'; |
no outgoing calls
no test coverage detected