removed debug-lines

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@351 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 20 years ago
parent 75ebdbc852
commit 664bceced5

@ -205,14 +205,14 @@ public class plasmaSnippetCache {
HashMap hs; HashMap hs;
String hash; String hash;
for (int i = 0; i < sentences.length; i++) { 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) { if (sentences[i].length() > minLength) {
hs = hashSentence(sentences[i]); hs = hashSentence(sentences[i]);
j = queryhashes.iterator(); j = queryhashes.iterator();
while (j.hasNext()) { while (j.hasNext()) {
hash = (String) j.next(); hash = (String) j.next();
if (hs.containsKey(hash)) { 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)); hitTable.incScore(new Integer(i));
} }
} }

Loading…
Cancel
Save