Abstracted away fileIDs from indexregistry; now use indexIDs
git-svn-id: https://hyracks.googlecode.com/svn/branches/hyracks_lsm_tree@1326 123451ca-8445-de46-9d55-352943316053
diff --git a/hyracks-storage-am-common/src/main/java/edu/uci/ics/hyracks/storage/am/common/dataflow/IndexRegistry.java b/hyracks-storage-am-common/src/main/java/edu/uci/ics/hyracks/storage/am/common/dataflow/IndexRegistry.java
index 5f3b0b3..9aba0be 100644
--- a/hyracks-storage-am-common/src/main/java/edu/uci/ics/hyracks/storage/am/common/dataflow/IndexRegistry.java
+++ b/hyracks-storage-am-common/src/main/java/edu/uci/ics/hyracks/storage/am/common/dataflow/IndexRegistry.java
@@ -19,24 +19,21 @@
public class IndexRegistry<IndexType> {
- private HashMap<Integer, IndexType> map = new HashMap<Integer, IndexType>();
+ private HashMap<Integer, IndexType> map = new HashMap<Integer, IndexType>();
- public IndexType get(int fileId) {
- return map.get(fileId);
- }
+ public IndexType get(int indexId) {
+ return map.get(indexId);
+ }
- public void register(int fileId, IndexType index) {
- map.put(fileId, index);
- }
+ public void register(int indexId, IndexType index) {
+ map.put(indexId, index);
+ }
- public void unregister(int fileId) {
- try {
- map.remove(fileId);
- } catch (Exception e) {
- }
- }
+ public void unregister(int indexId) {
+ map.remove(indexId);
+ }
- public int size() {
- return map.size();
- }
+ public int size() {
+ return map.size();
+ }
}