(int posToTest)
| 381 | |
| 382 | |
| 383 | private void validatePos(int posToTest) { |
| 384 | if (posToTest > len + 4) { |
| 385 | // Trying to read data beyond the end of the AJP message |
| 386 | throw new ArrayIndexOutOfBoundsException(sm.getString("ajpMessage.invalidPos", Integer.valueOf(posToTest))); |
| 387 | } |
| 388 | } |
| 389 | // ------------------------------------------------------ Protected Methods |
| 390 | |
| 391 |
no test coverage detected