Changed method acquire() to not append(), to allow callers to decide

whether to append() or prepend the returned buffer.
This commit is contained in:
Simone Bordet 2014-06-10 18:08:44 +02:00
parent 29f8158b51
commit 7aeddff675
1 changed files with 0 additions and 1 deletions

View File

@ -70,7 +70,6 @@ public interface ByteBufferPool
{
ByteBuffer buffer = byteBufferPool.acquire(capacity, direct);
BufferUtil.clearToFill(buffer);
append(buffer, true);
return buffer;
}