Fixed Eclipse compiler warnings

This commit is contained in:
Trustin Lee 2010-02-22 06:09:54 +00:00
parent 59052be709
commit 9ecd573937

View File

@ -35,8 +35,8 @@ final class SocketSendBufferPool {
assert (DEFAULT_PREALLOCATION_SIZE & ALIGN_MASK) == 0;
}
private PreallocationRef poolHead = null;
private Preallocation current = new Preallocation(DEFAULT_PREALLOCATION_SIZE);
PreallocationRef poolHead = null;
Preallocation current = new Preallocation(DEFAULT_PREALLOCATION_SIZE);
SocketSendBufferPool() {
super();