From ce79239322fb54d816eafa5a6206b8e3eb19ccbf Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Mon, 16 Mar 2009 16:22:33 +0000 Subject: [PATCH] "typo" git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5721 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/crawler/CrawlStacker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/crawler/CrawlStacker.java b/source/de/anomic/crawler/CrawlStacker.java index ee351dd60..66f356be6 100644 --- a/source/de/anomic/crawler/CrawlStacker.java +++ b/source/de/anomic/crawler/CrawlStacker.java @@ -260,12 +260,12 @@ public final class CrawlStacker { final boolean recrawl = (oldEntry != null) && (profile.recrawlIfOlder() > oldEntry.loaddate().getTime()); // do double-check if ((dbocc != null) && (!recrawl)) { - reason = "double " + dbocc + ")"; + reason = "double " + dbocc; if (this.log.isFine()) this.log.logFine("URL '" + entry.url().toString() + "' is double registered in '" + dbocc + "'. " + "Stack processing time: " + (System.currentTimeMillis()-startTime) + "ms"); return reason; } if ((oldEntry != null) && (!recrawl)) { - reason = "double " + "LURL)"; + reason = "double LURL"; if (this.log.isFine()) this.log.logFine("URL '" + entry.url().toString() + "' is double registered in 'LURL'. " + "Stack processing time: " + (System.currentTimeMillis()-startTime) + "ms"); return reason; }