(long count)
| 77 | } |
| 78 | |
| 79 | public long skip(long count) |
| 80 | throws IOException |
| 81 | { |
| 82 | if (this.in == null) { |
| 83 | throw new IOException("Input stream closed"); |
| 84 | } |
| 85 | long skipped = this.in.skip(Math.min(count, this.residualLength)); |
| 86 | this.residualLength = ((int)(this.residualLength - skipped)); |
| 87 | return skipped; |
| 88 | } |
| 89 | |
| 90 | protected void finalize() |
| 91 | { |
no outgoing calls
no test coverage detected