summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2008-04-01 01:59:06 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2008-04-01 01:59:06 +0000
commitfe834eda8d5fbff0c152db644187263ad64e25d7 (patch)
treef791d6e3adf2cc4d401cc71da4d3926636d5dc67
parenta4aaeb3cbaadcc9ae9888d9bbe35f600d9007f39 (diff)
downloadjackcess-fe834eda8d5fbff0c152db644187263ad64e25d7.tar.gz
jackcess-fe834eda8d5fbff0c152db644187263ad64e25d7.zip
remove some old comments
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@305 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r--src/java/com/healthmarketscience/jackcess/SimpleIndex.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/SimpleIndex.java b/src/java/com/healthmarketscience/jackcess/SimpleIndex.java
index 0d77aa1..2c59fb4 100644
--- a/src/java/com/healthmarketscience/jackcess/SimpleIndex.java
+++ b/src/java/com/healthmarketscience/jackcess/SimpleIndex.java
@@ -67,9 +67,6 @@ public class SimpleIndex extends Index {
writeDataPage(_dataPage);
}
- /**
- * Reads the actual index entries.
- */
@Override
protected void readIndexEntries()
throws IOException
@@ -141,9 +138,6 @@ public class SimpleIndex extends Index {
return Collections.binarySearch(getEntries(), entry);
}
- /**
- * Adds an entry to the entries list, maintaining the order.
- */
@Override
protected boolean addEntry(Entry newEntry, boolean isNullEntry, Object[] row)
throws IOException
@@ -178,11 +172,6 @@ public class SimpleIndex extends Index {
return false;
}
- /**
- * Removes an entry from the entries list, maintaining the order. Will
- * search by RowId if entry is not found in case a partial entry was
- * provided.
- */
@Override
protected boolean removeEntry(Entry oldEntry)
{