mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8299336: InputStream::DEFAULT_BUFFER_SIZE should be 16384
Reviewed-by: bpb
This commit is contained in:
parent
1e9972922a
commit
3dcf700161
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue