From commits-return-71530-archive-asf-public=cust-asf.ponee.io@commons.apache.org Mon Dec 30 14:14:30 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id E44F8180657 for ; Mon, 30 Dec 2019 15:14:29 +0100 (CET) Received: (qmail 23929 invoked by uid 500); 30 Dec 2019 14:14:29 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 23920 invoked by uid 99); 30 Dec 2019 14:14:29 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Dec 2019 14:14:29 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D016A8D80D; Mon, 30 Dec 2019 14:14:28 +0000 (UTC) Date: Mon, 30 Dec 2019 14:14:28 +0000 To: "commits@commons.apache.org" Subject: [commons-codec] branch release updated: [CODEC-276] Reliance on default encoding in MurmurHash2 and MurmurHash3. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157771526878.3672.10456756399764375102@gitbox.apache.org> From: ggregory@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: commons-codec X-Git-Refname: refs/heads/release X-Git-Reftype: branch X-Git-Oldrev: 3397682996c8dc618469b4ca910dd130540451e3 X-Git-Newrev: 6f27ca6680174e91122aa98c188c47407370ca19 X-Git-Rev: 6f27ca6680174e91122aa98c188c47407370ca19 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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); * * - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -245,7 +245,7 @@ public final class MurmurHash3 { * int hash = MurmurHash3.hash32(bytes, offset, bytes.length, seed); * * - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -271,7 +271,7 @@ public final class MurmurHash3 { * int hash = MurmurHash3.hash32(data, offset, length, seed); * * - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -295,7 +295,7 @@ public final class MurmurHash3 { * int hash = MurmurHash3.hash32(data, offset, length, seed); * * - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -317,7 +317,7 @@ public final class MurmurHash3 { *

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.

* - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -1188,7 +1188,7 @@ public final class MurmurHash3 { *

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.

* - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

* @@ -1200,7 +1200,7 @@ public final class MurmurHash3 { /** * {@inheritDoc} * - *

This implementation contains a sign-extension bug in the finalisation step of + *

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.

*