()
| 105 | } |
| 106 | |
| 107 | public void skipByteArray() throws IOException { |
| 108 | int length = this.readLength(); |
| 109 | this.readForLength(length); |
| 110 | } |
| 111 | |
| 112 | public void skipLongArray() throws IOException { |
| 113 | int length = this.stream.readInt(); |
no test coverage detected