HBASE-13142 [PERF] Reuse the IPCUtil#buildCellBlock buffer: ADDENDUM -- Fix build breakage

This commit is contained in:
stack 2015-03-06 16:30:31 -08:00
parent c8610ce36f
commit 880215b728

View File

@ -21,14 +21,13 @@ import static org.junit.Assert.assertEquals;
import java.nio.ByteBuffer;
import org.apache.hadoop.hbase.testclassification.IOTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category({ IOTests.class, SmallTests.class })
@Category({ SmallTests.class })
public class TestBoundedByteBufferPool {
final int maxByteBufferSizeToCache = 10;
final int initialByteBufferSize = 1;