Reads tags without saving. Returns false if a TAG_END occurs. @return false if TAG_END occurred. @throws IOException
()
| 48 | * @throws IOException |
| 49 | */ |
| 50 | public boolean skipTag() throws IOException { |
| 51 | int tag = this.stream.readUnsignedByte(); |
| 52 | return this.skipTag(tag); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Reads tags without saving. Returns false if a TAG_END occurs |
no test coverage detected