You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2013/10/31 18:30:31 UTC

git commit: ACCUMULO-1309 deprecated unused addSource method

Updated Branches:
  refs/heads/master c6229e12d -> b0da55a65


ACCUMULO-1309 deprecated unused addSource method


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

Branch: refs/heads/master
Commit: b0da55a65ef9be755fa49cf2ea199ccc7c44c0bf
Parents: c6229e1
Author: Billie Rinaldi <bi...@gmail.com>
Authored: Thu Oct 31 10:30:22 2013 -0700
Committer: Billie Rinaldi <bi...@gmail.com>
Committed: Thu Oct 31 10:30:22 2013 -0700

----------------------------------------------------------------------
 .../accumulo/core/iterators/user/IntersectingIterator.java       | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/b0da55a6/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 dbad38f..a532073 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
@@ -507,6 +507,10 @@ public class IntersectingIterator implements SortedKeyValueIterator<Key,Value> {
     advanceToIntersection();
   }
   
+  /**
+   * @deprecated since 1.6.0
+   */
+  @Deprecated
   public void addSource(SortedKeyValueIterator<Key,Value> source, IteratorEnvironment env, Text term, boolean notFlag) {
     // Check if we have space for the added Source
     if (sources == null) {