(int count)
| 611 | } |
| 612 | |
| 613 | public void skip(int count) { |
| 614 | if (count < 0) { |
| 615 | throw new IllegalArgumentException(); |
| 616 | } |
| 617 | data.position(data.position() + count); |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * Skips bytes until the position is aligned to a multiple of 4. |
no outgoing calls
no test coverage detected