diff --git a/src/main/java/org/jboss/netty/channel/socket/nio/SocketSendBufferPool.java b/src/main/java/org/jboss/netty/channel/socket/nio/SocketSendBufferPool.java index 49c983a5e3..dcca413bb6 100644 --- a/src/main/java/org/jboss/netty/channel/socket/nio/SocketSendBufferPool.java +++ b/src/main/java/org/jboss/netty/channel/socket/nio/SocketSendBufferPool.java @@ -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();