From 95abdeb685091c8b47f534cf2df1802007165f2f Mon Sep 17 00:00:00 2001 From: theli Date: Fri, 14 Oct 2005 08:51:02 +0000 Subject: [PATCH] *) Bugfix for nextElement function of URL Enumerator git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@936 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaCrawlLURL.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaCrawlLURL.java b/source/de/anomic/plasma/plasmaCrawlLURL.java index 21fe0c5a1..4fea7781f 100644 --- a/source/de/anomic/plasma/plasmaCrawlLURL.java +++ b/source/de/anomic/plasma/plasmaCrawlLURL.java @@ -726,7 +726,7 @@ public final class plasmaCrawlLURL extends plasmaURL { } public Object nextElement() { - return new Entry(new String((byte[]) i.next())); + return new Entry(new String(((byte[][])i.next())[0])); } }