From 6643da3fbdd0d96775beff77c9147718ed076ad5 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sat, 1 Jul 2006 09:51:00 +0000 Subject: [PATCH] bugfix for http://www.yacy-forum.de/viewtopic.php?p=23463#23463 (affected URL DB Cleaner) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2263 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaCrawlLURL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/plasma/plasmaCrawlLURL.java b/source/de/anomic/plasma/plasmaCrawlLURL.java index e5e10b752..b238ca0e0 100644 --- a/source/de/anomic/plasma/plasmaCrawlLURL.java +++ b/source/de/anomic/plasma/plasmaCrawlLURL.java @@ -775,11 +775,11 @@ public final class plasmaCrawlLURL extends indexURL { } public Object next() throws RuntimeException { - byte[] e = ((byte[][]) i.next())[0]; + kelondroRow.Entry e = (kelondroRow.Entry) i.next(); if (e == null) return null; String hash = null; try { - hash = new String(e); + hash = new String(e.getColBytes(0)); return new Entry(hash, null); } catch (IOException ex) { throw new RuntimeException("error '" + ex.getMessage() + "' for hash " + hash);