ACCUMULO-1700 removed static modifier from variables

Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/9af0b9d6
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/9af0b9d6
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/9af0b9d6

Branch: refs/heads/master
Commit: 9af0b9d60aa9cf7c50093bd7bc9b9875b86abb52
Parents: 699b40f
Author: Billie Rinaldi <billie.rina...@gmail.com>
Authored: Tue Sep 10 08:37:29 2013 -0700
Committer: Billie Rinaldi <billie.rina...@gmail.com>
Committed: Tue Sep 10 08:37:29 2013 -0700

----------------------------------------------------------------------
 .../accumulo/core/iterators/user/IndexedDocIterator.java     | 8 ++++----
 .../accumulo/core/iterators/user/IntersectingIterator.java   | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/9af0b9d6/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
----------------------------------------------------------------------
diff --git 
a/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
 
b/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
index 4ca2385..e72f522 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
@@ -59,10 +59,10 @@ public class IndexedDocIterator extends 
IntersectingIterator {
   private static final String indexFamilyOptionName = "indexFamily";
   private static final String docFamilyOptionName = "docFamily";
   
-  private static Text indexColf = DEFAULT_INDEX_COLF;
-  private static Text docColf = DEFAULT_DOC_COLF;
-  private static Set<ByteSequence> indexColfSet;
-  private static Set<ByteSequence> docColfSet;
+  private Text indexColf = DEFAULT_INDEX_COLF;
+  private Text docColf = DEFAULT_DOC_COLF;
+  private Set<ByteSequence> indexColfSet;
+  private Set<ByteSequence> docColfSet;
   
   private static final byte[] nullByte = {0};
   

http://git-wip-us.apache.org/repos/asf/accumulo/blob/9af0b9d6/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
----------------------------------------------------------------------
diff --git 
a/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
 
b/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
index 66b946b..dbad38f 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
@@ -115,7 +115,7 @@ public class IntersectingIterator implements 
SortedKeyValueIterator<Key,Value> {
     }
   }
   
-  TermSource[] sources;
+  protected TermSource[] sources;
   int sourcesCount = 0;
   
   Range overallRange;

Reply via email to