You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2021/12/23 20:20:53 UTC

[kafka] branch 3.1 updated: MINOR: Fix malformed html in javadoc of `ScramMechanism` (#11625)

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

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


The following commit(s) were added to refs/heads/3.1 by this push:
     new caac62e  MINOR: Fix malformed html in javadoc of `ScramMechanism` (#11625)
caac62e is described below

commit caac62e9a250c616aa6457b167380fd9eac8d1ec
Author: David Jacot <dj...@confluent.io>
AuthorDate: Thu Dec 23 21:15:24 2021 +0100

    MINOR: Fix malformed html in javadoc of `ScramMechanism` (#11625)
    
    Reviewers: Luke Chen <sh...@gmail.com>, Guozhang Wang <wa...@gmail.com>
---
 .../src/main/java/org/apache/kafka/clients/admin/ScramMechanism.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clients/src/main/java/org/apache/kafka/clients/admin/ScramMechanism.java b/clients/src/main/java/org/apache/kafka/clients/admin/ScramMechanism.java
index 9869bc7..95ad18c 100644
--- a/clients/src/main/java/org/apache/kafka/clients/admin/ScramMechanism.java
+++ b/clients/src/main/java/org/apache/kafka/clients/admin/ScramMechanism.java
@@ -49,7 +49,7 @@ public enum ScramMechanism {
      *
      * @param mechanismName the SASL SCRAM mechanism name
      * @return the corresponding SASL SCRAM mechanism enum, otherwise {@link #UNKNOWN}
-     * @see <a href="https://tools.ietf.org/html/rfc5802#section-4>
+     * @see <a href="https://tools.ietf.org/html/rfc5802#section-4">
      *     Salted Challenge Response Authentication Mechanism (SCRAM) SASL and GSS-API Mechanisms, Section 4</a>
      */
     public static ScramMechanism fromMechanismName(String mechanismName) {
@@ -62,7 +62,7 @@ public enum ScramMechanism {
     /**
      *
      * @return the corresponding SASL SCRAM mechanism name
-     * @see <a href="https://tools.ietf.org/html/rfc5802#section-4>
+     * @see <a href="https://tools.ietf.org/html/rfc5802#section-4">
      *     Salted Challenge Response Authentication Mechanism (SCRAM) SASL and GSS-API Mechanisms, Section 4</a>
      */
     public String mechanismName() {