Merged into my fork, not main repo

This commit is contained in:
Zlatin Balevsky
2021-04-24 23:11:52 +00:00
parent f753728d8a
commit ee5a87ae44

View File

@@ -60,6 +60,7 @@ public class DecodingOutputStream extends OutputStream {
int toWrite = Math.min(len, _bb.remaining());
_bb.put(buf, off, toWrite);
len -= toWrite;
off += toWrite;
}
flush();
}