updated Pool, poolable is now an abstract class instead of interface

This commit is contained in:
nathan 2015-08-23 00:06:24 +02:00
parent 0454a30382
commit add147699e

View File

@ -18,8 +18,7 @@ package dorkbox.util.bytes;
import dorkbox.util.objectPool.PoolableObject;
public
class ByteBuffer2Poolable implements PoolableObject<ByteBuffer2> {
@Override
class ByteBuffer2Poolable extends PoolableObject<ByteBuffer2> {
public
ByteBuffer2 create() {
return new ByteBuffer2(8, -1);