kirktrue commented on code in PR #15640:
URL: https://github.com/apache/kafka/pull/15640#discussion_r1586607598


##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/events/CommitEvent.java:
##########
@@ -30,12 +29,7 @@ public abstract class CommitEvent extends 
CompletableApplicationEvent<Void> {
      */
     private final Map<TopicPartition, OffsetAndMetadata> offsets;
 
-    protected CommitEvent(final Type type, final Map<TopicPartition, 
OffsetAndMetadata> offsets, final Timer timer) {
-        super(type, timer);
-        this.offsets = validate(offsets);
-    }
-
-    protected CommitEvent(final Type type, final Map<TopicPartition, 
OffsetAndMetadata> offsets, final long deadlineMs) {
+    public CommitEvent(final Type type, Map<TopicPartition, OffsetAndMetadata> 
offsets, final long deadlineMs) {

Review Comment:
   Added back `final` and changed back to `protected`. Not sure how/why I 
changed those 🤔 



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to