This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
The following commit(s) were added to refs/heads/master by this push: new 2aa8f67b Simplify comment 2aa8f67b is described below commit 2aa8f67b8c17a059a492ffc889e4a3dd64c8d675 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Oct 18 07:09:20 2023 -0400 Simplify comment --- .../java/org/apache/commons/codec/digest/MessageDigestAlgorithms.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/codec/digest/MessageDigestAlgorithms.java b/src/main/java/org/apache/commons/codec/digest/MessageDigestAlgorithms.java index ca45900b..21be7b0b 100644 --- a/src/main/java/org/apache/commons/codec/digest/MessageDigestAlgorithms.java +++ b/src/main/java/org/apache/commons/codec/digest/MessageDigestAlgorithms.java @@ -172,7 +172,7 @@ public class MessageDigestAlgorithms { * @since 1.11 */ public static String[] values() { - // N.B. do not use a constant array here as that can be changed externally by accident or design + // Do not use a constant array here as that can be changed externally by accident or design return new String[] { MD2, MD5, SHA_1, SHA_224, SHA_256, SHA_384, SHA_512, SHA_512_224, SHA_512_256, SHA3_224, SHA3_256, SHA3_384, SHA3_512