aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2013-11-07 00:00:21 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2013-11-07 00:00:21 +0000
commit0f766b14c3b9a5382a4d69b82c422ff8a277c3a6 (patch)
tree0369f3233bdb5dddc9f336d80094cca23adc97ab /src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java
parent80fc1a8613a266a32a6906fe86ee44c1549033d8 (diff)
downloadjackcess-0f766b14c3b9a5382a4d69b82c422ff8a277c3a6.tar.gz
jackcess-0f766b14c3b9a5382a4d69b82c422ff8a277c3a6.zip
remove unnecessary methods
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@834 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java b/src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java
index 083fd5a..0f3bb72 100644
--- a/src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java
+++ b/src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java
@@ -240,43 +240,6 @@ public class IndexImpl implements Index, Comparable<IndexImpl>
public void initialize() throws IOException {
getIndexData().initialize();
}
-
- /**
- * Writes the current index state to the database.
- * <p>
- * Forces index initialization.
- */
- public void update() throws IOException {
- getIndexData().update();
- }
-
- /**
- * Adds a row to this index
- * <p>
- * Forces index initialization.
- *
- * @param row Row to add
- * @param rowId rowId of the row to be added
- */
- public void addRow(Object[] row, RowIdImpl rowId)
- throws IOException
- {
- getIndexData().addRow(row, rowId);
- }
-
- /**
- * Removes a row from this index
- * <p>
- * Forces index initialization.
- *
- * @param row Row to remove
- * @param rowId rowId of the row to be removed
- */
- public void deleteRow(Object[] row, RowIdImpl rowId)
- throws IOException
- {
- getIndexData().deleteRow(row, rowId);
- }
/**
* Gets a new cursor for this index.