Removed final keyword from FixedChannelPool

This commit is contained in:
Derbylock 2016-11-23 14:11:34 +03:00 committed by Norman Maurer
parent ba95c401a7
commit f6b37a38ba

View File

@ -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(...)");