Skip to content

Commit

Permalink
more bugfixes for the new row/stack handling changes
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2160 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed May 30, 2006
1 parent 89424ff commit 09f780d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/de/anomic/index/indexRAMCacheRI.java
Expand Up @@ -189,7 +189,7 @@ private long restore() throws IOException {
while (i-- > 0) {
// get out one entry
row = dumpArray.get(i);
if (row == null) continue;
if ((row == null) || (row.empty(0)) || (row.empty(3)) || (row.empty(4))) continue;
wordHash = row.getColString(0, "UTF-8");
//creationTime = kelondroRecords.bytes2long(row[2]);
wordEntry = new indexURLEntry(row.getColString(3, "UTF-8"), row.getColString(4, "UTF-8"));
Expand Down
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaSwitchboardQueue.java
Expand Up @@ -158,7 +158,7 @@ public ArrayList list(int index) throws IOException {
try {
ArrayList list = sbQueueStack.botList(index);
for (int i = 0; i < list.size(); i++) {
list.set(i, new Entry((byte[][]) list.get(i)));
list.set(i, new Entry((kelondroRow.Entry) list.get(i)));
}
return list;
} catch (kelondroException e) {
Expand Down

0 comments on commit 09f780d

Please sign in to comment.