Skip to content

Commit 3d727a5

Browse files
committed
Fix Javadoc Typo
1 parent 983c944 commit 3d727a5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

spring-kafka/src/main/java/org/springframework/kafka/retrytopic/RetryTopicConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
*
203203
* @see RetryTopicConfigurationBuilder
204204
* @see org.springframework.kafka.annotation.RetryableTopic
205-
* @see Kafkaorg.springframework.kafka.annotation.KafkaListenerListener
205+
* @see org.springframework.kafka.annotation.KafkaListener
206206
* @see org.springframework.retry.annotation.Backoff
207207
* @see org.springframework.kafka.listener.SeekToCurrentErrorHandler
208208
* @see org.springframework.kafka.listener.DeadLetterPublishingRecoverer

spring-kafka/src/main/java/org/springframework/kafka/transaction/ChainedKafkaTransactionManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@
1616

1717
package org.springframework.kafka.transaction;
1818

19-
import org.springframework.data.transaction.ChainedTransactionManager;
2019
import org.springframework.kafka.core.ProducerFactory;
2120
import org.springframework.transaction.PlatformTransactionManager;
2221
import org.springframework.util.Assert;
2322

2423
/**
25-
* A {@link ChainedTransactionManager} that has exactly one
26-
* {@link KafkaAwareTransactionManager} in the chain.
24+
* A {@link org.springframework.data.transaction.ChainedTransactionManager} that has
25+
* exactly one {@link KafkaAwareTransactionManager} in the chain.
2726
*
2827
* @param <K> the key type.
2928
* @param <V> the value type.
3029
*
3130
* @author Gary Russell
3231
* @since 2.1.3
33-
* @deprecated Refer to the {@link ChainedTransactionManager} javadocs.
32+
* @deprecated Refer to the
33+
* {@link org.springframework.data.transaction.ChainedTransactionManager} javadocs.
3434
*
3535
*/
3636
@Deprecated
37-
public class ChainedKafkaTransactionManager<K, V> extends ChainedTransactionManager
37+
public class ChainedKafkaTransactionManager<K, V> extends org.springframework.data.transaction.ChainedTransactionManager
3838
implements KafkaAwareTransactionManager<K, V> {
3939

4040
private final KafkaAwareTransactionManager<K, V> kafkaTransactionManager;

0 commit comments

Comments
 (0)