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

aldettinger 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 6ee1af1  Fixed CS issue
6ee1af1 is described below

commit 6ee1af1a522bb71af8ffe05ac19bdeba0d574f7e
Author: aldettinger <aldettin...@gmail.com>
AuthorDate: Sun May 20 23:57:49 2018 +0200

    Fixed CS issue
---
 .../src/main/java/org/apache/camel/component/kafka/KafkaProducer.java  | 3 +--
 1 file changed, 1 insertion(+), 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 f4a7e1a..b3e9959 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,7 @@ 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;
     }
 

-- 
To stop receiving notification emails like this one, please contact
aldettin...@apache.org.

Reply via email to