(int n)
| 56 | } |
| 57 | |
| 58 | private void |
| 59 | require(int n) throws WireParseException{ |
| 60 | if (n > remaining()) { |
| 61 | throw new WireParseException("end of input"); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Marks the following bytes in the stream as active. |
no test coverage detected