ignite-db - final
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/9cfda8d6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/9cfda8d6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/9cfda8d6 Branch: refs/heads/ignite-db-x-10884 Commit: 9cfda8d61aa34e0c43b86f1e0a5cb2f8961be438 Parents: 14ffbf0 Author: S.Vladykin <[email protected]> Authored: Wed Apr 20 21:20:14 2016 +0300 Committer: S.Vladykin <[email protected]> Committed: Wed Apr 20 21:20:14 2016 +0300 ---------------------------------------------------------------------- .../processors/cache/database/tree/BPlusTree.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/9cfda8d6/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 37d6d06..51649a5 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 @@ -596,7 +596,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Cursor. * @throws IgniteCheckedException If failed. */ - public GridCursor<T> find(L lower, L upper) throws IgniteCheckedException { + public final GridCursor<T> find(L lower, L upper) throws IgniteCheckedException { if (lower == null) return findNoLower(upper); @@ -612,7 +612,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Found row. */ @SuppressWarnings("unchecked") - public T findOne(L row) throws IgniteCheckedException { + public final T findOne(L row) throws IgniteCheckedException { GetOne g = new GetOne(row); doFind(g); @@ -803,7 +803,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Removed row. * @throws IgniteCheckedException If failed. */ - public T removeCeil(L row) throws IgniteCheckedException { + public final T removeCeil(L row) throws IgniteCheckedException { assert row != null; return remove(row, true); @@ -814,7 +814,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Removed row. * @throws IgniteCheckedException If failed. */ - public T remove(L row) throws IgniteCheckedException { + public final T remove(L row) throws IgniteCheckedException { assert row != null; return remove(row, false); @@ -826,7 +826,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Removed row. * @throws IgniteCheckedException If failed. */ - public T remove(L row, boolean ceil) throws IgniteCheckedException { + public final T remove(L row, boolean ceil) throws IgniteCheckedException { Remove r = new Remove(row, ceil); try { @@ -1005,7 +1005,7 @@ public abstract class BPlusTree<L, T extends L> { * @return Old row. * @throws IgniteCheckedException If failed. */ - public T put(T row) throws IgniteCheckedException { + public final T put(T row) throws IgniteCheckedException { Put p = new Put(row); try {
