8061686: Size limits in BufferAllocator should have been final

Reviewed-by: lancea, chegar
This commit is contained in:
Joe Wang 2014-10-21 13:17:32 -07:00
parent 12b7532ad0
commit a3b952a84d

@ -35,9 +35,9 @@ import java.lang.ref.*;
* @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;
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;