This commit is contained in:
BetaSteward 2010-04-11 19:52:34 +00:00
parent 058af9a48e
commit cbb37e7933
126 changed files with 3253 additions and 911 deletions

View file

@ -59,6 +59,7 @@ public class FastByteArrayInputStream extends InputStream {
return count - pos;
}
@Override
public final int read() {
return (pos < count) ? (buf[pos++] & 0xff) : -1;
}