Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0863B107CA for ; Sat, 23 Nov 2013 23:51:55 +0000 (UTC) Received: (qmail 64818 invoked by uid 500); 23 Nov 2013 23:51:51 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 64388 invoked by uid 500); 23 Nov 2013 23:51:51 -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 64174 invoked by uid 99); 23 Nov 2013 23:51:50 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Nov 2013 23:51:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3C3E2902FFD; Sat, 23 Nov 2013 23:51:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Sat, 23 Nov 2013 23:51:58 -0000 Message-Id: <38773a863e574326aaf810ac3fd516d4@git.apache.org> In-Reply-To: <3a03c74a531946da9a279bed5eecbbd3@git.apache.org> References: <3a03c74a531946da9a279bed5eecbbd3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [10/30] git commit: ACCUMULO-1854 Removing unnecessary configurations. ACCUMULO-1854 Removing unnecessary configurations. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f4e4c39d Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f4e4c39d Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f4e4c39d Branch: refs/heads/1.6.0-SNAPSHOT Commit: f4e4c39de9c599067f4a0b35007d11302c3bd709 Parents: 4dfe3e0 Author: Josh Elser Authored: Thu Nov 21 20:42:47 2013 -0500 Committer: Josh Elser Committed: Thu Nov 21 20:42:47 2013 -0500 ---------------------------------------------------------------------- .../core/client/mapreduce/RangeInputSplit.java | 18 ------------------ 1 file changed, 18 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/f4e4c39d/core/src/main/java/org/apache/accumulo/core/client/mapreduce/RangeInputSplit.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/client/mapreduce/RangeInputSplit.java b/core/src/main/java/org/apache/accumulo/core/client/mapreduce/RangeInputSplit.java index d613836..67b839b 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/mapreduce/RangeInputSplit.java +++ b/core/src/main/java/org/apache/accumulo/core/client/mapreduce/RangeInputSplit.java @@ -56,7 +56,6 @@ public class RangeInputSplit extends InputSplit implements Writable { private String rowRegex, colfamRegex, colqualRegex, valueRegex; private AuthenticationToken token; private Boolean offline, mockInstance, isolatedScan, localIterators; - private Integer maxVersions; private Authorizations auths; private Set> fetchedColumns; private List iterators; @@ -165,10 +164,6 @@ public class RangeInputSplit extends InputSplit implements Writable { } if (in.readBoolean()) { - maxVersions = in.readInt(); - } - - if (in.readBoolean()) { rowRegex = in.readUTF(); } @@ -253,11 +248,6 @@ public class RangeInputSplit extends InputSplit implements Writable { out.writeBoolean(mockInstance); } - out.writeBoolean(null != maxVersions); - if (null != maxVersions) { - out.writeInt(getMaxVersions()); - } - out.writeBoolean(null != rowRegex); if (null != rowRegex) { out.writeUTF(rowRegex); @@ -449,14 +439,6 @@ public class RangeInputSplit extends InputSplit implements Writable { this.isolatedScan = isolatedScan; } - public Integer getMaxVersions() { - return maxVersions; - } - - public void setMaxVersions(Integer maxVersions) { - this.maxVersions = maxVersions; - } - public Authorizations getAuths() { return auths; }