Repository: ignite Updated Branches: refs/heads/ignite-5075 203159696 -> 16397628a
ignite-5075 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/16397628 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/16397628 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/16397628 Branch: refs/heads/ignite-5075 Commit: 16397628a68d2d33cb85f520ae49f236fec5eed2 Parents: 2031596 Author: sboikov <[email protected]> Authored: Wed May 17 17:06:54 2017 +0300 Committer: sboikov <[email protected]> Committed: Wed May 17 17:08:20 2017 +0300 ---------------------------------------------------------------------- .../processors/cache/database/tree/BPlusTree.java | 2 +- .../java/org/apache/ignite/internal/util/IgniteTree.java | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/16397628/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/database/tree/BPlusTree.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/database/tree/BPlusTree.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/database/tree/BPlusTree.java index d7a4f7f..bd10d74 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/database/tree/BPlusTree.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/database/tree/BPlusTree.java @@ -944,7 +944,7 @@ public abstract class BPlusTree<L, T extends L> extends DataStructure implements * @return Cursor. * @throws IgniteCheckedException If failed. */ - @Override public final GridCursor<T> find(L lower, L upper, Object x) throws IgniteCheckedException { + public final GridCursor<T> find(L lower, L upper, Object x) throws IgniteCheckedException { checkDestroyed(); try { http://git-wip-us.apache.org/repos/asf/ignite/blob/16397628/modules/core/src/main/java/org/apache/ignite/internal/util/IgniteTree.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/util/IgniteTree.java b/modules/core/src/main/java/org/apache/ignite/internal/util/IgniteTree.java index 3198191..396b8a4 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/util/IgniteTree.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/util/IgniteTree.java @@ -64,17 +64,6 @@ public interface IgniteTree<L, T> { public GridCursor<T> find(L lower, L upper) throws IgniteCheckedException; /** - * Returns a cursor from lower to upper bounds inclusive. - * - * @param lower Lower bound or {@code null} if unbounded. - * @param upper Upper bound or {@code null} if unbounded. - * @param x Implementation specific argument, {@code null} always means that we need to return full detached data row. - * @return Cursor. - * @throws IgniteCheckedException If failed. - */ - public GridCursor<T> find(L lower, L upper, Object x) throws IgniteCheckedException; - - /** * Returns a value mapped to the lowest key, or {@code null} if tree is empty * @return Value. * @throws IgniteCheckedException If failed.
