From f6b37a38bac6dbea5dd2282c68a0f41c456f67a2 Mon Sep 17 00:00:00 2001 From: Derbylock Date: Wed, 23 Nov 2016 14:11:34 +0300 Subject: [PATCH] Removed final keyword from FixedChannelPool --- .../src/main/java/io/netty/channel/pool/FixedChannelPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java b/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java index cefedee89f..8c69dc7b0d 100644 --- a/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java +++ b/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java @@ -34,7 +34,7 @@ import java.util.concurrent.TimeoutException; * {@link ChannelPool} implementation that takes another {@link ChannelPool} implementation and enforce a maximum * number of concurrent connections. */ -public final class FixedChannelPool extends SimpleChannelPool { +public class FixedChannelPool extends SimpleChannelPool { private static final IllegalStateException FULL_EXCEPTION = ThrowableUtil.unknownStackTrace( new IllegalStateException("Too many outstanding acquire operations"), FixedChannelPool.class, "acquire0(...)");