From 78fedb7d41e4701bfdbc8e79cd5d3d58dde3bbd9 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Thu, 16 Apr 2020 12:25:33 +0200 Subject: [PATCH] Fix typo in Javadoc of KafkaItemReader --- .../org/springframework/batch/item/kafka/KafkaItemReader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/kafka/KafkaItemReader.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/kafka/KafkaItemReader.java index a022b27ea..3d4bb49eb 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/kafka/KafkaItemReader.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/kafka/KafkaItemReader.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 the original author or authors. + * Copyright 2019-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ import org.springframework.util.Assert; *

* *

- * Since {@link KafkaConsumer} is not thread-safe, this reader is not thead-safe. + * Since {@link KafkaConsumer} is not thread-safe, this reader is not thread-safe. *

* * @author Mathieu Ouellet