This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-2.21.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.21.x by this push: new 0532129 CAMEL-12829: Fixed CS 0532129 is described below commit 0532129e6320c22340556a6a72e30590690b23aa Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Sep 25 09:28:10 2018 +0200 CAMEL-12829: Fixed CS --- .../src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java index b443582..c623ab9 100644 --- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java +++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java @@ -127,8 +127,8 @@ public class CxfEndpoint extends DefaultEndpoint implements AsyncEndpoint, Heade @UriParam(label = "advanced") protected Bus bus; - private AtomicBoolean getBusHasBeenCalled = new AtomicBoolean(false); protected volatile boolean createBus; + private final AtomicBoolean getBusHasBeenCalled = new AtomicBoolean(false); private BindingConfiguration bindingConfig; private DataBinding dataBinding;