Increase buffer size of BufferUtil.writeTo to 4k

This commit is contained in:
Thomas Becker 2013-06-12 08:40:55 +02:00
parent 53270e7edb
commit c5bf9c3d49
1 changed files with 1 additions and 1 deletions

View File

@ -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 =