You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/01/23 13:53:04 UTC

[camel] branch master updated: Camel-Jgroups: Fixed CS

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

acosentino 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 d570edf  Camel-Jgroups: Fixed CS
d570edf is described below

commit d570edfa30653e824f842d60300ef54ea5c707c8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jan 23 14:52:44 2020 +0100

    Camel-Jgroups: Fixed CS
---
 .../main/java/org/apache/camel/component/jgroups/JGroupsEndpoint.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsEndpoint.java b/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsEndpoint.java
index bf63a62..a1409ed 100644
--- a/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsEndpoint.java
+++ b/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsEndpoint.java
@@ -40,13 +40,12 @@ import org.slf4j.LoggerFactory;
 @UriEndpoint(firstVersion = "2.13.0", scheme = "jgroups", title = "JGroups", syntax = "jgroups:clusterName", label = "clustering,messaging")
 public class JGroupsEndpoint extends DefaultEndpoint {
 
-    private static final Logger LOG = LoggerFactory.getLogger(JGroupsEndpoint.class);
-
     public static final String HEADER_JGROUPS_ORIGINAL_MESSAGE = "JGROUPS_ORIGINAL_MESSAGE";
     public static final String HEADER_JGROUPS_SRC = "JGROUPS_SRC";
     public static final String HEADER_JGROUPS_DEST = "JGROUPS_DEST";
     public static final String HEADER_JGROUPS_CHANNEL_ADDRESS = "JGROUPS_CHANNEL_ADDRESS";
 
+    private static final Logger LOG = LoggerFactory.getLogger(JGroupsEndpoint.class);
     private AtomicInteger connectCount = new AtomicInteger(0);
 
     private JChannel channel;