You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mj...@apache.org on 2021/02/19 00:05:51 UTC

[kafka] branch 2.8 updated: TRIVIAL: fix JavaDocs formatting (#10134)

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

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


The following commit(s) were added to refs/heads/2.8 by this push:
     new 2e16a76  TRIVIAL: fix JavaDocs formatting (#10134)
2e16a76 is described below

commit 2e16a76e617606fd5b58faa4a99ee13bc30749c7
Author: Matthias J. Sax <ma...@confluent.io>
AuthorDate: Thu Feb 18 16:02:25 2021 -0800

    TRIVIAL: fix JavaDocs formatting (#10134)
    
    Reviewers: Chia-Ping Tsai <ch...@gmail.com>, Bill Bejeck <bi...@confluent.io>
---
 .../main/java/org/apache/kafka/streams/processor/ProcessorSupplier.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/src/main/java/org/apache/kafka/streams/processor/ProcessorSupplier.java b/streams/src/main/java/org/apache/kafka/streams/processor/ProcessorSupplier.java
index b81b8b9..a3e5f30 100644
--- a/streams/src/main/java/org/apache/kafka/streams/processor/ProcessorSupplier.java
+++ b/streams/src/main/java/org/apache/kafka/streams/processor/ProcessorSupplier.java
@@ -26,7 +26,7 @@ import java.util.function.Supplier;
  * It is used in {@link Topology} for adding new processor operators, whose generated
  * topology can then be replicated (and thus creating one or more {@link Processor} instances)
  * and distributed to multiple stream threads.
- *
+ * <p>
  * The supplier should always generate a new instance each time {@link ProcessorSupplier#get()} gets called. Creating
  * a single {@link Processor} object and returning the same object reference in {@link ProcessorSupplier#get()} would be
  * a violation of the supplier pattern and leads to runtime exceptions.