Skip to content

Commit

Permalink
Reduce output writer size
Browse files Browse the repository at this point in the history
Signed-off-by: liurenjie1024 <[email protected]>
  • Loading branch information
liurenjie1024 committed Nov 15, 2024
1 parent f7b28ac commit 2365b0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Visible for testing
*/
class DataOutputStreamWriter extends DataWriter {
private final byte[] arrayBuffer = new byte[1024 * 128];
private final byte[] arrayBuffer = new byte[1024];
private final DataOutputStream dout;

public DataOutputStreamWriter(DataOutputStream dout) {
Expand Down

0 comments on commit 2365b0a

Please sign in to comment.