This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 7054bf2fc16 MINOR: Removed stale Javadoc comment (#22227)
7054bf2fc16 is described below
commit 7054bf2fc163089b0e4024bea36bb2843e6bfb55
Author: Paolo Patierno <[email protected]>
AuthorDate: Thu May 7 19:09:01 2026 +0200
MINOR: Removed stale Javadoc comment (#22227)
This trivial PR just removes a stale Javadoc comment mentioning the
`loadLogDelta` which doesn't exist anymore. AFAIU the logic was moved
to the `MetadataBatchLoader` class.
Reviewers: Chia-Ping Tsai <[email protected]>
---
.../src/main/java/org/apache/kafka/image/loader/MetadataLoader.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/metadata/src/main/java/org/apache/kafka/image/loader/MetadataLoader.java
b/metadata/src/main/java/org/apache/kafka/image/loader/MetadataLoader.java
index 977dacd1dc9..669c456f7dc 100644
--- a/metadata/src/main/java/org/apache/kafka/image/loader/MetadataLoader.java
+++ b/metadata/src/main/java/org/apache/kafka/image/loader/MetadataLoader.java
@@ -451,8 +451,8 @@ public class MetadataLoader implements
RaftClient.Listener<ApiMessageAndVersion>
}
/**
- * Load a snapshot. This is relatively straightforward since we don't
track as many things as
- * we do in loadLogDelta. The main complication here is that we have to
maintain an index
+ * Load a snapshot.
+ * The main complication here is that we have to maintain an index
* of what record we are processing so that we can give useful error
messages.
*
* @param delta The metadata delta we are preparing.