From 664bceced512d302b08885c3fcff2bf2c3ba109c Mon Sep 17 00:00:00 2001 From: orbiter Date: Thu, 30 Jun 2005 18:56:01 +0000 Subject: [PATCH] removed debug-lines git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@351 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSnippetCache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/plasma/plasmaSnippetCache.java b/source/de/anomic/plasma/plasmaSnippetCache.java index 2a6584850..a51e6594a 100644 --- a/source/de/anomic/plasma/plasmaSnippetCache.java +++ b/source/de/anomic/plasma/plasmaSnippetCache.java @@ -205,14 +205,14 @@ public class plasmaSnippetCache { HashMap hs; String hash; for (int i = 0; i < sentences.length; i++) { - System.out.println("Sentence " + i + ": " + sentences[i]); + //System.out.println("Sentence " + i + ": " + sentences[i]); if (sentences[i].length() > minLength) { hs = hashSentence(sentences[i]); j = queryhashes.iterator(); while (j.hasNext()) { hash = (String) j.next(); if (hs.containsKey(hash)) { - System.out.println("hash " + hash + " appears in line " + i); + //System.out.println("hash " + hash + " appears in line " + i); hitTable.incScore(new Integer(i)); } }