]> source.dussan.org Git - jackcess.git/commitdiff
remove some old comments
authorJames Ahlborn <jtahlborn@yahoo.com>
Tue, 1 Apr 2008 01:59:06 +0000 (01:59 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Tue, 1 Apr 2008 01:59:06 +0000 (01:59 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@305 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/SimpleIndex.java

index 0d77aa10e328c7d0f565a079f99cb98a152017f2..2c59fb4177cb30b81b1945e55bbfdfc22a96cc46 100644 (file)
@@ -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)
   {