From 0f766b14c3b9a5382a4d69b82c422ff8a277c3a6 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Thu, 7 Nov 2013 00:00:21 +0000 Subject: remove unnecessary methods git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@834 f203690c-595d-4dc9-a70b-905162fa7fd2 --- .../jackcess/impl/IndexImpl.java | 37 ---------------------- 1 file changed, 37 deletions(-) (limited to 'src/main/java/com/healthmarketscience/jackcess/impl/IndexImpl.java') 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 public void initialize() throws IOException { getIndexData().initialize(); } - - /** - * Writes the current index state to the database. - *

- * Forces index initialization. - */ - public void update() throws IOException { - getIndexData().update(); - } - - /** - * Adds a row to this index - *

- * 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 - *

- * 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. -- cgit v1.2.3