Polish "GH-41: Add auto-created topics"

Remove author

See #41
This commit is contained in:
Chris Bono
2022-08-25 13:53:36 -05:00
parent c834ecf1a6
commit 4bab93e744
6 changed files with 0 additions and 6 deletions

View File

@@ -41,7 +41,6 @@ import org.springframework.util.CollectionUtils;
* An administration class that delegates to {@link PulsarAdmin} to create and manage
* topics defined in the application context.
*
* @author Chris Bono
* @author Alexander Preuß
*/
public class PulsarAdministration

View File

@@ -19,7 +19,6 @@ package org.springframework.pulsar.core;
/**
* The Pulsar administration contract.
*
* @author Chris Bono
* @author Alexander Preuß
*/
public interface PulsarAdministrationOperations {

View File

@@ -29,7 +29,6 @@ import org.apache.pulsar.common.naming.TopicDomain;
* @param topicName the topic name
* @param numberOfPartitions the number of partitions, or 0 for non-partitioned topics
*
* @author Chris Bono
* @author Alexander Preuß
*/
public record PulsarTopic(String topicName, int numberOfPartitions) {

View File

@@ -19,7 +19,6 @@ package org.springframework.pulsar.core;
/**
* Builder class to create {@link PulsarTopic} instances.
*
* @author Chris Bono
* @author Alexander Preuß
*/
public class PulsarTopicBuilder {

View File

@@ -39,7 +39,6 @@ import org.springframework.test.context.junit.jupiter.SpringExtension;
/**
* Tests for {@link PulsarAdministration}.
*
* @author Chris Bono
* @author Alexander Preuß
*/
@ExtendWith(SpringExtension.class)

View File

@@ -29,7 +29,6 @@ import org.junit.jupiter.params.provider.MethodSource;
/**
* Tests for {@link PulsarTopic}.
*
* @author Chris Bono
* @author Alexander Preuß
*/
public class PulsarTopicTests {