(String s, String what, BitSet allowedChars)
| 1144 | } |
| 1145 | |
| 1146 | private static void checkPercentEncodedArg(String s, String what, BitSet allowedChars) { |
| 1147 | percentDecode(s, what, allowedChars, null); |
| 1148 | } |
| 1149 | |
| 1150 | // See UriTest for how these were computed from the ABNF constants in RFC 3986. |
| 1151 | static final BitSet digitChars = BitSet.valueOf(new long[] {0x3ff000000000000L}); |
no test coverage detected