forked from External/mage
latest
This commit is contained in:
parent
058af9a48e
commit
cbb37e7933
126 changed files with 3253 additions and 911 deletions
|
|
@ -59,6 +59,7 @@ public class FastByteArrayInputStream extends InputStream {
|
|||
return count - pos;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final int read() {
|
||||
return (pos < count) ? (buf[pos++] & 0xff) : -1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue