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 f0f649c7 Javadoc new aa081fbc Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-codec f0f649c7 is described below commit f0f649c70ee212f58495937c7e3ef6ee86848181 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 18 09:17:39 2024 -0400 Javadoc --- src/main/java/org/apache/commons/codec/binary/Base64.java | 1 - src/main/java/org/apache/commons/codec/digest/MurmurHash3.java | 2 +- src/main/java/org/apache/commons/codec/digest/XXHash32.java | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/binary/Base64.java b/src/main/java/org/apache/commons/codec/binary/Base64.java index 443ccc66..971d2c2e 100644 --- a/src/main/java/org/apache/commons/codec/binary/Base64.java +++ b/src/main/java/org/apache/commons/codec/binary/Base64.java @@ -219,7 +219,6 @@ public class Base64 extends BaseNCodec { return new Base64().decode(base64String); } - // Implementation of integer encoding used for crypto /** * Decodes a byte64-encoded integer according to crypto standards such as W3C's XML-Signature. * diff --git a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java index 197c7053..10ce3b8a 100644 --- a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java +++ b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java @@ -20,7 +20,7 @@ package org.apache.commons.codec.digest; import org.apache.commons.codec.binary.StringUtils; /** - * Implementation of the MurmurHash3 32-bit and 128-bit hash functions. + * Implements the MurmurHash3 32-bit and 128-bit hash functions. * * <p> * MurmurHash is a non-cryptographic hash function suitable for general hash-based lookup. The name comes from two basic diff --git a/src/main/java/org/apache/commons/codec/digest/XXHash32.java b/src/main/java/org/apache/commons/codec/digest/XXHash32.java index fd46fc0c..16f59b8b 100644 --- a/src/main/java/org/apache/commons/codec/digest/XXHash32.java +++ b/src/main/java/org/apache/commons/codec/digest/XXHash32.java @@ -22,7 +22,7 @@ import static java.lang.Integer.rotateLeft; import java.util.zip.Checksum; /** - * Implementation of the xxHash32 hash algorithm. + * Implements the xxHash32 hash algorithm. * * <p> * Copied from Commons Compress 1.14 <a href=