You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by vv...@apache.org on 2022/05/06 16:32:22 UTC

[kafka] branch trunk updated: MINOR: Fix RecordContext Javadoc (#12130)

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

vvcephei 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 e3202b9999 MINOR: Fix RecordContext Javadoc (#12130)
e3202b9999 is described below

commit e3202b99999ef4c63aab2e5ab049978704282792
Author: John Roesler <vv...@users.noreply.github.com>
AuthorDate: Fri May 6 11:31:51 2022 -0500

    MINOR: Fix RecordContext Javadoc (#12130)
    
    A prior commit accidentally changed the javadoc for RecordContext.
    In reality, it is not reachable from api.Processor, only Processor.
    
    Reviewers: Guozhang Wang <gu...@apache.org>
---
 .../src/main/java/org/apache/kafka/streams/processor/RecordContext.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/src/main/java/org/apache/kafka/streams/processor/RecordContext.java b/streams/src/main/java/org/apache/kafka/streams/processor/RecordContext.java
index 9b21df83dd..66b1f8dff0 100644
--- a/streams/src/main/java/org/apache/kafka/streams/processor/RecordContext.java
+++ b/streams/src/main/java/org/apache/kafka/streams/processor/RecordContext.java
@@ -21,7 +21,7 @@ import org.apache.kafka.streams.kstream.ValueTransformerWithKeySupplier;
 
 /**
  * The context associated with the current record being processed by
- * an {@link org.apache.kafka.streams.processor.api.Processor}
+ * a {@link org.apache.kafka.streams.processor.Processor}
  */
 public interface RecordContext {