You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by bb...@apache.org on 2020/10/20 19:57:03 UTC

[kafka] branch 2.7 updated: MINOR: Clean-up client javadoc warnings (#9463)

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

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


The following commit(s) were added to refs/heads/2.7 by this push:
     new f6f315f  MINOR: Clean-up client javadoc warnings (#9463)
f6f315f is described below

commit f6f315f89ffe8891011ef6604d7456d26a57dede
Author: Bill Bejeck <bb...@gmail.com>
AuthorDate: Tue Oct 20 15:46:31 2020 -0400

    MINOR: Clean-up client javadoc warnings (#9463)
    
    Reviewers: Boyang Chen <bo...@confluent.io>, Chia-Ping Tsai <ch...@gmail.com>
---
 clients/src/main/java/org/apache/kafka/clients/admin/FeatureUpdate.java | 2 +-
 .../src/main/java/org/apache/kafka/clients/consumer/RangeAssignor.java  | 2 +-
 .../java/org/apache/kafka/common/security/auth/SslEngineFactory.java    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/clients/src/main/java/org/apache/kafka/clients/admin/FeatureUpdate.java b/clients/src/main/java/org/apache/kafka/clients/admin/FeatureUpdate.java
index f43d63e..38753af 100644
--- a/clients/src/main/java/org/apache/kafka/clients/admin/FeatureUpdate.java
+++ b/clients/src/main/java/org/apache/kafka/clients/admin/FeatureUpdate.java
@@ -27,7 +27,7 @@ public class FeatureUpdate {
 
     /**
      * @param maxVersionLevel   the new maximum version level for the finalized feature.
-     *                          a value < 1 is special and indicates that the update is intended to
+     *                          a value &lt; 1 is special and indicates that the update is intended to
      *                          delete the finalized feature, and should be accompanied by setting
      *                          the allowDowngrade flag to true.
      * @param allowDowngrade    - true, if this feature update was meant to downgrade the existing
diff --git a/clients/src/main/java/org/apache/kafka/clients/consumer/RangeAssignor.java b/clients/src/main/java/org/apache/kafka/clients/consumer/RangeAssignor.java
index ea64288..21eb47a 100644
--- a/clients/src/main/java/org/apache/kafka/clients/consumer/RangeAssignor.java
+++ b/clients/src/main/java/org/apache/kafka/clients/consumer/RangeAssignor.java
@@ -43,7 +43,7 @@ import java.util.Map;
  *
  * Since the introduction of static membership, we could leverage <code>group.instance.id</code> to make the assignment behavior more sticky.
  * For the above example, after one rolling bounce, group coordinator will attempt to assign new <code>member.id</code> towards consumers,
- * for example <code>C0</code> -> <code>C3</code> <code>C1</code> -> <code>C2</code>.
+ * for example <code>C0</code> -&gt; <code>C3</code> <code>C1</code> -&gt; <code>C2</code>.
  *
  * <p>The assignment could be completely shuffled to:
  * <ul>
diff --git a/clients/src/main/java/org/apache/kafka/common/security/auth/SslEngineFactory.java b/clients/src/main/java/org/apache/kafka/common/security/auth/SslEngineFactory.java
index 1bbf142..586017d 100644
--- a/clients/src/main/java/org/apache/kafka/common/security/auth/SslEngineFactory.java
+++ b/clients/src/main/java/org/apache/kafka/common/security/auth/SslEngineFactory.java
@@ -62,7 +62,7 @@ public interface SslEngineFactory extends Configurable, Closeable {
      * <p>
      * For example, if the implementation depends on file-based key material, it can check if the file was updated
      * compared to the previous/last-loaded timestamp and return true.
-     * </>
+     * </p>
      *
      * @param nextConfigs       The new configuration we want to use.
      * @return                  True only if the underlying <code>SSLEngine</code> object should be rebuilt.