()
| 117 | } |
| 118 | |
| 119 | public void skipIntArray() throws IOException { |
| 120 | int length = this.stream.readInt(); |
| 121 | for (int i = 0; i < length; i++) { |
| 122 | this.stream.readInt(); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | public int readLength() throws IOException { |
| 127 | return this.stream.readInt(); |
no test coverage detected