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 fe23bcfc Javadoc fe23bcfc is described below commit fe23bcfc073369ade33ed283e1d167f6fa66e763 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 19 12:37:15 2025 -0400 Javadoc --- src/main/java/org/apache/commons/codec/digest/MurmurHash3.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 5b193643..c94b78cc 100644 --- a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java +++ b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java @@ -42,13 +42,14 @@ import org.apache.commons.codec.binary.StringUtils; * code." </blockquote> * * <p> - * Original adaption from Apache Hive. That adaption contains a {@code hash64} method that is not part of the original + * Original adaption from <a href=https://hive.apache.org/">Apache Hive</a>. + * That adaption contains a {@code hash64} method that is not part of the original * MurmurHash3 code. It is not recommended to use these methods. They will be removed in a future release. To obtain a * 64-bit hash use half of the bits from the {@code hash128x64} methods using the input data converted to bytes. * </p> * * @see <a href="https://en.wikipedia.org/wiki/MurmurHash">MurmurHash</a> - * @see <a href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp"> Original MurmurHash3 c++ + * @see <a href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp"> Original MurmurHash3 C++ * code</a> * @see <a href= * "https://github.com/apache/hive/blob/master/storage-api/src/java/org/apache/hive/common/util/Murmur3.java">