This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch sandbox/camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5f96268bf767cbce2533a8800dd2eb08bde92576 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Nov 15 09:53:00 2018 +0100 CAMEL-12932 - Fixed CS --- .../src/main/java/org/apache/camel/component/ahc/ws/WsEndpoint.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-ahc-ws/src/main/java/org/apache/camel/component/ahc/ws/WsEndpoint.java b/components/camel-ahc-ws/src/main/java/org/apache/camel/component/ahc/ws/WsEndpoint.java index 44e1d0c..4c4d5c1 100644 --- a/components/camel-ahc-ws/src/main/java/org/apache/camel/component/ahc/ws/WsEndpoint.java +++ b/components/camel-ahc-ws/src/main/java/org/apache/camel/component/ahc/ws/WsEndpoint.java @@ -67,9 +67,9 @@ public class WsEndpoint extends AhcEndpoint { @Override public Consumer createConsumer(Processor processor) throws Exception { - WsConsumer consumer = new WsConsumer(this, processor); - configureConsumer(consumer); - return consumer; + WsConsumer consumer = new WsConsumer(this, processor); + configureConsumer(consumer); + return consumer; } WebSocket getWebSocket() throws Exception {
