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 04ccd86c4a..7b62213156 100644 --- a/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java +++ b/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java @@ -197,7 +197,7 @@ public class FixedChannelPool extends SimpleChannelPool { task.promise.setFailure(new TimeoutException( "Acquire operation took longer then configured maximum time") { @Override - public synchronized Throwable fillInStackTrace() { + public Throwable fillInStackTrace() { return this; } });