mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Reduce garbage
This commit is contained in:
parent
55c990f9f3
commit
671e579163
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ public class Helper {
|
||||||
}
|
}
|
||||||
|
|
||||||
static String readStream(InputStream is, String charset) throws IOException {
|
static String readStream(InputStream is, String charset) throws IOException {
|
||||||
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
ByteArrayOutputStream os = new ByteArrayOutputStream(Math.max(BUFFER_SIZE, is.available()));
|
||||||
byte[] buffer = new byte[BUFFER_SIZE];
|
byte[] buffer = new byte[BUFFER_SIZE];
|
||||||
for (int len = is.read(buffer); len != -1; len = is.read(buffer))
|
for (int len = is.read(buffer); len != -1; len = is.read(buffer))
|
||||||
os.write(buffer, 0, len);
|
os.write(buffer, 0, len);
|
||||||
|
|
Loading…
Reference in a new issue