()
| 110 | } |
| 111 | |
| 112 | public void skipLongArray() throws IOException { |
| 113 | int length = this.stream.readInt(); |
| 114 | for (int i = 0; i < length; i++) { |
| 115 | this.stream.readLong(); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | public void skipIntArray() throws IOException { |
| 120 | int length = this.stream.readInt(); |
no test coverage detected