You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/11/26 14:07:57 UTC

[commons-codec] branch master updated: Remove duplicate "from"s in javadoc comments

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

aherbert 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 9314764  Remove duplicate "from"s in javadoc comments
9314764 is described below

commit 931476423fb042062d17291cd6155bfb4b68fcaf
Author: James Gan <ja...@users.noreply.github.com>
AuthorDate: Wed Nov 25 13:29:10 2020 -0800

    Remove duplicate "from"s in javadoc comments
---
 .../java/org/apache/commons/codec/digest/MurmurHash3.java  | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 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 6305dd0..6b471df 100644
--- a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
+++ b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
@@ -312,7 +312,7 @@ public final class MurmurHash3 {
      * Generates 32-bit hash from the byte array with the given offset, length and seed.
      *
      * <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * <p>This implementation contains a sign-extension bug in the finalization step of
      * any bytes left over from dividing the length by 4. This manifests if any of these
@@ -385,7 +385,7 @@ public final class MurmurHash3 {
      * Generates 32-bit hash from the byte array with the given offset, length and seed.
      *
      * <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * @param data The input byte array
      * @param offset The offset of data
@@ -782,7 +782,7 @@ public final class MurmurHash3 {
      * Generates 128-bit hash from the byte array with the given offset, length and seed.
      *
      * <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * <p>This implementation contains a sign-extension bug in the seed initialization.
      * This manifests if the seed is negative.<p>
@@ -809,7 +809,7 @@ public final class MurmurHash3 {
      * Generates 128-bit hash from the byte array with the given offset, length and seed.
      *
      * <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * @param data The input byte array
      * @param offset The first element of array
@@ -827,7 +827,7 @@ public final class MurmurHash3 {
      * Generates 128-bit hash from the byte array with the given offset, length and seed.
      *
      * <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * @param data The input byte array
      * @param offset The first element of array
@@ -1009,7 +1009,7 @@ public final class MurmurHash3 {
      * hash computed.
      *
      * <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * @since 1.14
      */
@@ -1187,7 +1187,7 @@ public final class MurmurHash3 {
      * hash computed.
      *
      * <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
-     * from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
+     * from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
      *
      * <p>This implementation contains a sign-extension bug in the finalization step of
      * any bytes left over from dividing the length by 4. This manifests if any of these