Increase buffer size of BufferUtil.writeTo to 4k
This commit is contained in:
parent
53270e7edb
commit
c5bf9c3d49
|
@ -84,7 +84,7 @@ import java.nio.charset.Charset;
|
|||
*/
|
||||
public class BufferUtil
|
||||
{
|
||||
static final int TEMP_BUFFER_SIZE = 512;
|
||||
static final int TEMP_BUFFER_SIZE = 4096;
|
||||
static final byte SPACE = 0x20;
|
||||
static final byte MINUS = '-';
|
||||
static final byte[] DIGIT =
|
||||
|
|
Loading…
Reference in New Issue