You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2021/02/15 09:18:02 UTC

[camel] branch master updated: Fix CS

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli 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 26db53a  Fix CS
26db53a is described below

commit 26db53ac46b51645fde8b688a014da3235985967
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Mon Feb 15 10:17:23 2021 +0100

    Fix CS
---
 .../src/main/java/org/apache/camel/impl/DefaultCamelContext.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/java/org/apache/camel/impl/DefaultCamelContext.java b/core/camel-core-engine/src/main/java/org/apache/camel/impl/DefaultCamelContext.java
index d44192c..050d306 100644
--- a/core/camel-core-engine/src/main/java/org/apache/camel/impl/DefaultCamelContext.java
+++ b/core/camel-core-engine/src/main/java/org/apache/camel/impl/DefaultCamelContext.java
@@ -83,8 +83,8 @@ import org.slf4j.LoggerFactory;
  */
 public class DefaultCamelContext extends SimpleCamelContext implements ModelCamelContext {
 
-    private static final Logger LOG = LoggerFactory.getLogger(DefaultCamelContext.class);
     protected static final ThreadLocal<OptionHolder> OPTIONS = ThreadLocal.withInitial(OptionHolder::new);
+    private static final Logger LOG = LoggerFactory.getLogger(DefaultCamelContext.class);
 
     private Model model = new DefaultModel(this);