Skip to content

Commit 9314764

Browse files
jamesylganaherbert
authored andcommitted
Remove duplicate "from"s in javadoc comments
1 parent c43c22b commit 9314764

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/codec/digest/MurmurHash3.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public static int hash32(final byte[] data, final int length, final int seed) {
312312
* Generates 32-bit hash from the byte array with the given offset, length and seed.
313313
*
314314
* <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
315-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
315+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
316316
*
317317
* <p>This implementation contains a sign-extension bug in the finalization step of
318318
* any bytes left over from dividing the length by 4. This manifests if any of these
@@ -385,7 +385,7 @@ public static int hash32x86(final byte[] data) {
385385
* Generates 32-bit hash from the byte array with the given offset, length and seed.
386386
*
387387
* <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
388-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
388+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
389389
*
390390
* @param data The input byte array
391391
* @param offset The offset of data
@@ -782,7 +782,7 @@ public static long[] hash128(final String data) {
782782
* Generates 128-bit hash from the byte array with the given offset, length and seed.
783783
*
784784
* <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
785-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
785+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
786786
*
787787
* <p>This implementation contains a sign-extension bug in the seed initialization.
788788
* This manifests if the seed is negative.<p>
@@ -809,7 +809,7 @@ public static long[] hash128(final byte[] data, final int offset, final int leng
809809
* Generates 128-bit hash from the byte array with the given offset, length and seed.
810810
*
811811
* <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
812-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
812+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
813813
*
814814
* @param data The input byte array
815815
* @param offset The first element of array
@@ -827,7 +827,7 @@ public static long[] hash128x64(final byte[] data, final int offset, final int l
827827
* Generates 128-bit hash from the byte array with the given offset, length and seed.
828828
*
829829
* <p>This is an implementation of the 128-bit hash function {@code MurmurHash3_x64_128}
830-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
830+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
831831
*
832832
* @param data The input byte array
833833
* @param offset The first element of array
@@ -1009,7 +1009,7 @@ private static long fmix64(long hash) {
10091009
* hash computed.
10101010
*
10111011
* <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
1012-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
1012+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
10131013
*
10141014
* @since 1.14
10151015
*/
@@ -1187,7 +1187,7 @@ private static int orBytes(final byte b1, final byte b2, final byte b3, final by
11871187
* hash computed.
11881188
*
11891189
* <p>This is an implementation of the 32-bit hash function {@code MurmurHash3_x86_32}
1190-
* from from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
1190+
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
11911191
*
11921192
* <p>This implementation contains a sign-extension bug in the finalization step of
11931193
* any bytes left over from dividing the length by 4. This manifests if any of these

0 commit comments

Comments
 (0)