Remove the deprecated constructor

This commit is contained in:
Trustin Lee 2014-06-02 18:24:19 +09:00
parent e79ca269b8
commit af4c30fa56

View File

@ -182,15 +182,6 @@ public class PooledByteBufAllocator extends AbstractByteBufAllocator {
}
}
@Deprecated
@SuppressWarnings("UnusedParameters")
public PooledByteBufAllocator(boolean preferDirect, int nHeapArena, int nDirectArena, int pageSize, int maxOrder,
int tinyCacheSize, int smallCacheSize, int normalCacheSize,
long cacheThreadAliveCheckInterval) {
this(preferDirect, nHeapArena, nDirectArena, pageSize, maxOrder,
tinyCacheSize, smallCacheSize, normalCacheSize);
}
@SuppressWarnings("unchecked")
private static <T> PoolArena<T>[] newArenaArray(int size) {
return new PoolArena[size];