This is an automated email from the ASF dual-hosted git repository.

mjsax pushed a commit to branch 4.2
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/4.2 by this push:
     new 8d479c8e6bf HOTFIX: remove incorrect public API change (#22596)
8d479c8e6bf is described below

commit 8d479c8e6bfefdcda7294946688a07fd5de48a82
Author: Matthias J. Sax <[email protected]>
AuthorDate: Wed Jun 17 05:58:55 2026 -0700

    HOTFIX: remove incorrect public API change (#22596)
    
    This change was merge by accident, and must be reverted to not change
    public API.
    
    (Accidentally introduced via https://github.com/apache/kafka/pull/22546
    -- we will fix-forward on `trunk` but need to revert in `4.3` and `4.2`
    branches)
    
    Reviewers: Bill Bejeck <[email protected]>
---
 .../src/main/java/org/apache/kafka/streams/test/TestRecord.java       | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/streams/test-utils/src/main/java/org/apache/kafka/streams/test/TestRecord.java
 
b/streams/test-utils/src/main/java/org/apache/kafka/streams/test/TestRecord.java
index eb724a08e16..63f692106ee 100644
--- 
a/streams/test-utils/src/main/java/org/apache/kafka/streams/test/TestRecord.java
+++ 
b/streams/test-utils/src/main/java/org/apache/kafka/streams/test/TestRecord.java
@@ -38,10 +38,6 @@ public class TestRecord<K, V> {
     private final V value;
     private final Instant recordTime;
 
-    public boolean equalsIgnorePartition(final TestRecord<? extends K, ? super 
V> o) {
-        return false;
-    }
-
     /**
      * Creates a record.
      *

Reply via email to