()
| 194 | } |
| 195 | |
| 196 | public void skipString() throws IOException { |
| 197 | int length = this.stream.readUnsignedShort(); |
| 198 | this.readForLength(length); |
| 199 | } |
| 200 | |
| 201 | public String readString() throws IOException { |
| 202 | int length = this.stream.readUnsignedShort(); |
no test coverage detected