8299336: InputStream::DEFAULT_BUFFER_SIZE should be 16384

Reviewed-by: bpb
This commit is contained in:
Markus KARG 2023-01-06 17:35:17 +00:00 committed by Brian Burkhalter
parent 1e9972922a
commit 3dcf700161

View file

@ -53,7 +53,7 @@ public abstract class InputStream implements Closeable {
// use when skipping.
private static final int MAX_SKIP_BUFFER_SIZE = 2048;
private static final int DEFAULT_BUFFER_SIZE = 8192;
private static final int DEFAULT_BUFFER_SIZE = 16384;
/**
* Constructor for subclasses to call.