Skip to content

Commit

Permalink
Fix Javadoc Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Feb 17, 2021
1 parent 983c944 commit 3d727a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
*
* @see RetryTopicConfigurationBuilder
* @see org.springframework.kafka.annotation.RetryableTopic
* @see Kafkaorg.springframework.kafka.annotation.KafkaListenerListener
* @see org.springframework.kafka.annotation.KafkaListener
* @see org.springframework.retry.annotation.Backoff
* @see org.springframework.kafka.listener.SeekToCurrentErrorHandler
* @see org.springframework.kafka.listener.DeadLetterPublishingRecoverer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@

package org.springframework.kafka.transaction;

import org.springframework.data.transaction.ChainedTransactionManager;
import org.springframework.kafka.core.ProducerFactory;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.util.Assert;

/**
* A {@link ChainedTransactionManager} that has exactly one
* {@link KafkaAwareTransactionManager} in the chain.
* A {@link org.springframework.data.transaction.ChainedTransactionManager} that has
* exactly one {@link KafkaAwareTransactionManager} in the chain.
*
* @param <K> the key type.
* @param <V> the value type.
*
* @author Gary Russell
* @since 2.1.3
* @deprecated Refer to the {@link ChainedTransactionManager} javadocs.
* @deprecated Refer to the
* {@link org.springframework.data.transaction.ChainedTransactionManager} javadocs.
*
*/
@Deprecated
public class ChainedKafkaTransactionManager<K, V> extends ChainedTransactionManager
public class ChainedKafkaTransactionManager<K, V> extends org.springframework.data.transaction.ChainedTransactionManager
implements KafkaAwareTransactionManager<K, V> {

private final KafkaAwareTransactionManager<K, V> kafkaTransactionManager;
Expand Down

0 comments on commit 3d727a5

Please sign in to comment.