You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/04/09 06:01:05 UTC

[camel] branch main updated: Fixed CS

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 9edae73382e Fixed CS
9edae73382e is described below

commit 9edae73382e760752fe3e28ee4b34192ca081e9c
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Apr 9 08:00:49 2023 +0200

    Fixed CS
---
 .../camel/processor/idempotent/kafka/KafkaIdempotentRepository.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-kafka/src/main/java/org/apache/camel/processor/idempotent/kafka/KafkaIdempotentRepository.java b/components/camel-kafka/src/main/java/org/apache/camel/processor/idempotent/kafka/KafkaIdempotentRepository.java
index 656f3071f41..2169815777d 100644
--- a/components/camel-kafka/src/main/java/org/apache/camel/processor/idempotent/kafka/KafkaIdempotentRepository.java
+++ b/components/camel-kafka/src/main/java/org/apache/camel/processor/idempotent/kafka/KafkaIdempotentRepository.java
@@ -83,7 +83,7 @@ public class KafkaIdempotentRepository extends ServiceSupport implements Idempot
     private String topic;
     private String bootstrapServers;
 
-    private String groupId = null;
+    private String groupId;
     private Properties producerConfig;
     private Properties consumerConfig;
     private int maxCacheSize = DEFAULT_MAXIMUM_CACHE_SIZE;