1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 19:52:17 -05:00

FixedLengthInputStream - implement skip which honors mLength

Patch by andrewgaul
This commit is contained in:
cketti 2011-11-28 01:14:49 +01:00
parent e145a621c7
commit 798d6753dd

View File

@ -57,6 +57,15 @@ public class FixedLengthInputStream extends InputStream {
return read(b, 0, b.length);
}
@Override
public long skip(long n) throws IOException {
long d = mIn.skip(Math.min(n, available()));
if (d > 0) {
mCount += d;
}
return d;
}
@Override
public String toString() {
return String.format("FixedLengthInputStream(in=%s, length=%d)", mIn.toString(), mLength);