From a381cc2f6895aefc2b5abf2124907bc3cbaebc61 Mon Sep 17 00:00:00 2001 From: maggiolo00 Date: Fri, 4 Sep 2015 16:22:34 +0200 Subject: [PATCH] changed method name for getting the index engine --- .../core/storage/impl/local/OAbstractPaginatedStorage.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java b/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java index f2892bcec57..23b2720711c 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java +++ b/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java @@ -1201,8 +1201,9 @@ public int loadIndexEngine(String name) { stateLock.releaseReadLock(); } } - - public OIndexEngine get(int indexId) { + + + public OIndexEngine getIndexEngine(int indexId) { return indexEngines.get(indexId); }