From 02e4dedff267b79a92cbac1339e40878522bfbb0 Mon Sep 17 00:00:00 2001 From: Michael Christen Date: Fri, 13 Apr 2012 11:52:59 +0200 Subject: [PATCH] fix to url citation collection --- source/net/yacy/search/index/Segment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/yacy/search/index/Segment.java b/source/net/yacy/search/index/Segment.java index 3d136084d..566b79c81 100644 --- a/source/net/yacy/search/index/Segment.java +++ b/source/net/yacy/search/index/Segment.java @@ -274,7 +274,7 @@ public class Segment { byte[] refhash = new DigestURI(anchor).hash(); //System.out.println("*** addCitationIndex: urlhash = " + ASCII.String(urlhash) + ", refhash = " + ASCII.String(refhash) + ", urldate = " + urlModified.toString()); try { - this.urlCitationIndex.add(urlhash, new CitationReference(refhash, urldate)); + this.urlCitationIndex.add(refhash, new CitationReference(urlhash, urldate)); } catch (final Exception e) { Log.logException(e); }