This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new f3aa728 Fixed CS f3aa728 is described below commit f3aa728c8d01c4e5ff4d3355ae649a0a39306c1d Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Mar 13 16:22:27 2021 +0100 Fixed CS --- .../java/org/apache/camel/impl/engine/PooledExchangeFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PooledExchangeFactory.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PooledExchangeFactory.java index 82613a3..4eb0a7b 100644 --- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PooledExchangeFactory.java +++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PooledExchangeFactory.java @@ -37,6 +37,10 @@ public final class PooledExchangeFactory extends PrototypeExchangeFactory { public PooledExchangeFactory() { } + public PooledExchangeFactory(Consumer consumer) { + super(consumer); + } + @Override protected void doBuild() throws Exception { super.doBuild(); @@ -46,10 +50,6 @@ public final class PooledExchangeFactory extends PrototypeExchangeFactory { LOG.trace("Warming up PooledExchangeFactory loaded class: {}", dummy.getClass().getName()); } - public PooledExchangeFactory(Consumer consumer) { - super(consumer); - } - @Override public ExchangeFactory newExchangeFactory(Consumer consumer) { PooledExchangeFactory answer = new PooledExchangeFactory(consumer);