From commits-return-25076-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Thu Jul 15 07:27:01 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 766F5180661 for ; Thu, 15 Jul 2021 09:27:01 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id B5CAC43968 for ; Thu, 15 Jul 2021 07:27:00 +0000 (UTC) Received: (qmail 96038 invoked by uid 500); 15 Jul 2021 07:26:59 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 96019 invoked by uid 99); 15 Jul 2021 07:26:58 -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; Thu, 15 Jul 2021 07:26:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 7D30C81EE9; Thu, 15 Jul 2021 07:26:58 +0000 (UTC) Date: Thu, 15 Jul 2021 07:26:58 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch main updated: Fix typo 'putByteSquence' to 'putByteSequence' (#2201) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <162633401825.21345.198127682438276026@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Oldrev: f9f1d3f6578c400862e9f0e8d82a49bf9c4a5392 X-Git-Newrev: 5a44af4cfed519e9fbd4fa036c6582b56bffd26f X-Git-Rev: 5a44af4cfed519e9fbd4fa036c6582b56bffd26f 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. ctubbsii pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git The following commit(s) were added to refs/heads/main by this push: new 5a44af4 Fix typo 'putByteSquence' to 'putByteSequence' (#2201) 5a44af4 is described below commit 5a44af4cfed519e9fbd4fa036c6582b56bffd26f Author: classickartik <73540552+classickartik@users.noreply.github.com> AuthorDate: Thu Jul 15 12:56:42 2021 +0530 Fix typo 'putByteSquence' to 'putByteSequence' (#2201) --- .../apache/accumulo/core/client/sample/RowColumnSampler.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/client/sample/RowColumnSampler.java b/core/src/main/java/org/apache/accumulo/core/client/sample/RowColumnSampler.java index 3199dc1..7eedeb9 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/sample/RowColumnSampler.java +++ b/core/src/main/java/org/apache/accumulo/core/client/sample/RowColumnSampler.java @@ -104,26 +104,26 @@ public class RowColumnSampler extends AbstractHashSampler { } } - private void putByteSquence(ByteSequence data, DataOutput hasher) throws IOException { + private void putByteSequence(ByteSequence data, DataOutput hasher) throws IOException { hasher.write(data.getBackingArray(), data.offset(), data.length()); } @Override protected void hash(DataOutput hasher, Key k) throws IOException { if (row) { - putByteSquence(k.getRowData(), hasher); + putByteSequence(k.getRowData(), hasher); } if (family) { - putByteSquence(k.getColumnFamilyData(), hasher); + putByteSequence(k.getColumnFamilyData(), hasher); } if (qualifier) { - putByteSquence(k.getColumnQualifierData(), hasher); + putByteSequence(k.getColumnQualifierData(), hasher); } if (visibility) { - putByteSquence(k.getColumnVisibilityData(), hasher); + putByteSequence(k.getColumnVisibilityData(), hasher); } } }