This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.x by this push:
new 37c6194872b Fixed CS
37c6194872b is described below
commit 37c6194872bf5fc9a2f25bc96e745d4bfc05a729
Author: Claus Ibsen <[email protected]>
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 07005a529a2..8087ae40e95 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;