You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2018/07/16 10:19:14 UTC

[camel] branch camel-2.21.x updated: Fix Checkstyle issues

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

gzurowski 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 150331c  Fix Checkstyle issues
150331c is described below

commit 150331c42a54b95186f9ec1ed4e759702c3ff4b8
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Mon Jul 16 12:19:08 2018 +0200

    Fix Checkstyle issues
    
    Signed-off-by: Gregor Zurowski <gr...@zurowski.org>
---
 .../src/main/java/org/apache/camel/component/kafka/KafkaProducer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaProducer.java b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaProducer.java
index e7df82b..71e8d3f 100644
--- a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaProducer.java
+++ b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaProducer.java
@@ -271,8 +271,8 @@ public class KafkaProducer extends DefaultAsyncProducer {
         } else if (value instanceof byte[]) {
             return (byte[]) value;
         }
-        log.debug("Cannot propagate header value of type[{}], skipping... " +
-                "Supported types: String, Integer, Long, Double, byte[].", value != null ? value.getClass() : "null");
+        log.debug("Cannot propagate header value of type[{}], skipping... "
+                + "Supported types: String, Integer, Long, Double, byte[].", value != null ? value.getClass() : "null");
         return null;
     }