This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new d92a812 Fix Javadoc warnings that broke the build d92a812 is described below commit d92a812492baa0e510cedf25ca10203303e7bf79 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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org