(ByteChunk bc)
| 444 | } |
| 445 | |
| 446 | private void urlDecode(ByteChunk bc) throws IOException { |
| 447 | if (urlDec == null) { |
| 448 | urlDec = new UDecoder(); |
| 449 | } |
| 450 | urlDec.convert(bc, true); |
| 451 | } |
| 452 | |
| 453 | /** |
| 454 | * Process the given MessageBytes as a set of URL-encoded parameters using the specified character set. |
no test coverage detected