m1a2st commented on code in PR #20336:
URL: https://github.com/apache/kafka/pull/20336#discussion_r2266021329
##########
tools/src/main/java/org/apache/kafka/tools/reassign/PartitionReassignmentState.java:
##########
@@ -18,40 +18,13 @@
package org.apache.kafka.tools.reassign;
import java.util.List;
-import java.util.Objects;
/**
* The state of a partition reassignment. The current replicas and target
replicas
* may overlap.
*/
-final class PartitionReassignmentState {
- public final List<Integer> currentReplicas;
-
- public final List<Integer> targetReplicas;
-
- public final boolean done;
-
- /**
- * @param currentReplicas The current replicas.
- * @param targetReplicas The target replicas.
- * @param done True if the reassignment is done.
- */
Review Comment:
Could you retain the Java documentation for these fields?
--
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]