(int length)
| 36 | } |
| 37 | |
| 38 | public void readForLength(int length) throws IOException { |
| 39 | for (int i = 0; i < length; i++) { |
| 40 | this.stream.readByte(); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Reads tags without saving. Returns false if a TAG_END occurs. |
no test coverage detected