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; import dorkbox.util.objectPool.PoolableObject;
public public
class ByteBuffer2Poolable implements PoolableObject<ByteBuffer2> { class ByteBuffer2Poolable extends PoolableObject<ByteBuffer2> {
@Override
public public
ByteBuffer2 create() { ByteBuffer2 create() {
return new ByteBuffer2(8, -1); return new ByteBuffer2(8, -1);