(affected URL DB Cleaner)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2263 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 866d53ed70
commit 6643da3fbd

@ -775,11 +775,11 @@ public final class plasmaCrawlLURL extends indexURL {
} }
public Object next() throws RuntimeException { public Object next() throws RuntimeException {
byte[] e = ((byte[][]) i.next())[0]; kelondroRow.Entry e = (kelondroRow.Entry) i.next();
if (e == null) return null; if (e == null) return null;
String hash = null; String hash = null;
try { try {
hash = new String(e); hash = new String(e.getColBytes(0));
return new Entry(hash, null); return new Entry(hash, null);
} catch (IOException ex) { } catch (IOException ex) {
throw new RuntimeException("error '" + ex.getMessage() + "' for hash " + hash); throw new RuntimeException("error '" + ex.getMessage() + "' for hash " + hash);

Loading…
Cancel
Save