You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2022/03/17 19:43:38 UTC

[tomcat] branch 10.0.x updated: Fix Javadoc warnings that broke the build

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

markt pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.0.x by this push:
     new d976d0f  Fix Javadoc warnings that broke the build
d976d0f is described below

commit d976d0f4557cb48066b405e342fe17bb137c003f
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Mar 17 19:42:16 2022 +0000

    Fix Javadoc warnings that broke the build
---
 java/org/apache/catalina/realm/DigestCredentialHandlerBase.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/java/org/apache/catalina/realm/DigestCredentialHandlerBase.java b/java/org/apache/catalina/realm/DigestCredentialHandlerBase.java
index 122adef..0291df0 100644
--- a/java/org/apache/catalina/realm/DigestCredentialHandlerBase.java
+++ b/java/org/apache/catalina/realm/DigestCredentialHandlerBase.java
@@ -297,8 +297,8 @@ public abstract class DigestCredentialHandlerBase implements CredentialHandler {
     /**
      * Implements String equality which always compares all characters in the
      * string, without stopping early if any characters do not match.
-     *
-     * @implNote
+     * <p>
+     * <i>Note:</i>
      * This implementation was adapted from {@link MessageDigest#isEqual}
      * which we assume is as optimizer-defeating as possible.
      *
@@ -347,8 +347,8 @@ public abstract class DigestCredentialHandlerBase implements CredentialHandler {
     /**
      * Implements byte-array equality which always compares all bytes in the
      * array, without stopping early if any bytes do not match.
-     *
-     * @implNote
+     * <p>
+     * <i>Note:</i>
      * Implementation note: this method delegates to {@link MessageDigest#isEqual}
      * under the assumption that it provides a constant-time comparison of the
      * bytes in the arrays. Java 7+ has such an implementation, but neither the

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org