wernerdv commented on code in PR #21121:
URL: https://github.com/apache/kafka/pull/21121#discussion_r2711450504
##########
tools/src/main/java/org/apache/kafka/tools/TopicCommand.java:
##########
@@ -272,18 +271,16 @@ static class TopicDescription {
private final int numPartitions;
private final int replicationFactor;
private final Config config;
- private final boolean markedForDeletion;
- public TopicDescription(String topic, Uuid topicId, int numPartitions,
int replicationFactor, Config config, boolean markedForDeletion) {
+ TopicDescription(String topic, Uuid topicId, int numPartitions, int
replicationFactor, Config config) {
this.topic = topic;
this.topicId = topicId;
this.numPartitions = numPartitions;
this.replicationFactor = replicationFactor;
this.config = config;
- this.markedForDeletion = markedForDeletion;
Review Comment:
Thanks for the review!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]