This is an automated email from the ASF dual-hosted git repository.
bbejeck pushed a commit to branch 4.3
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/4.3 by this push:
new 375f37acdce HOTFIX: remove incorrect public API change (#22596)
375f37acdce is described below
commit 375f37acdce6c176b527c7e173160036a539af88
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.
*