src/java.xml/share/classes/com/sun/xml/internal/stream/util/BufferAllocator.java

Print this page

        

*** 33,45 **** * * @author Binu.John@sun.com * @author Santiago.PericasGeertsen@sun.com */ public class BufferAllocator { ! public static int SMALL_SIZE_LIMIT = 128; ! public static int MEDIUM_SIZE_LIMIT = 2048; ! public static int LARGE_SIZE_LIMIT = 8192; char[] smallCharBuffer; char[] mediumCharBuffer; char[] largeCharBuffer; --- 33,45 ---- * * @author Binu.John@sun.com * @author Santiago.PericasGeertsen@sun.com */ public class BufferAllocator { ! private static final int SMALL_SIZE_LIMIT = 128; ! private static final int MEDIUM_SIZE_LIMIT = 2048; ! private static final int LARGE_SIZE_LIMIT = 8192; char[] smallCharBuffer; char[] mediumCharBuffer; char[] largeCharBuffer;