You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/11/24 00:51:58 UTC

[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 <el...@apache.org>
Authored: Thu Nov 21 20:42:47 2013 -0500
Committer: Josh Elser <el...@apache.org>
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<Pair<Text,Text>> fetchedColumns;
   private List<IteratorSetting> 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;
   }