more bugfixes for the new row/stack handling changes

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2160 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 89424ff122
commit 09f780df27

@ -189,7 +189,7 @@ public final class indexRAMCacheRI extends indexAbstractRI implements indexRI {
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"));

@ -158,7 +158,7 @@ public class plasmaSwitchboardQueue {
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) {

Loading…
Cancel
Save