This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-codec.git
The following commit(s) were added to refs/heads/release by this push:
new 6f27ca6 [CODEC-276] Reliance on default encoding in MurmurHash2 and
MurmurHash3.
6f27ca6 is described below
commit 6f27ca6680174e91122aa98c188c47407370ca19
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Dec 30 09:14:25 2019 -0500
[CODEC-276] Reliance on default encoding in MurmurHash2 and MurmurHash3.
Standardize on US English spelling.
---
.../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 fd37bb5..fd008fa 100644
--- a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
+++ b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
@@ -216,7 +216,7 @@ public final class MurmurHash3 {
* int hash = MurmurHash3.hash32(data, offset, data.length, seed);
* </pre>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -245,7 +245,7 @@ public final class MurmurHash3 {
* int hash = MurmurHash3.hash32(bytes, offset, bytes.length, seed);
* </pre>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -271,7 +271,7 @@ public final class MurmurHash3 {
* int hash = MurmurHash3.hash32(data, offset, length, seed);
* </pre>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -295,7 +295,7 @@ public final class MurmurHash3 {
* int hash = MurmurHash3.hash32(data, offset, length, seed);
* </pre>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -317,7 +317,7 @@ public final class MurmurHash3 {
* <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>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -1188,7 +1188,7 @@ public final class MurmurHash3 {
* <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>
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*
@@ -1200,7 +1200,7 @@ public final class MurmurHash3 {
/**
* {@inheritDoc}
*
- * <p>This implementation contains a sign-extension bug in the
finalisation step of
+ * <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
* bytes are negative.<p>
*