Merge branch 'master' into 'master'

Merged into my fork, not main repo

See merge request i2p-hackers/i2p.i2p!26
This commit is contained in:
Zlatin Balevsky
2021-04-24 23:11:52 +00:00

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();
}