From ea4849716f7f14cac7980f21bfea1b18de2a7ef2 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@6c8d7289-2bf4-0310-a012-ef5d649a1542> Date: Tue, 19 Apr 2005 06:37:27 +0000 Subject: [PATCH] *) Bugfix: plasmaCondenser.getWords() was not used correctly git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@24 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/htdocsdefault/dir.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htroot/htdocsdefault/dir.java b/htroot/htdocsdefault/dir.java index df43ea799..ba77f7cbc 100644 --- a/htroot/htdocsdefault/dir.java +++ b/htroot/htdocsdefault/dir.java @@ -456,7 +456,8 @@ public class dir { public static void deletePhrase(plasmaSwitchboard switchboard, String urlstring, String phrase, String descr) { try { String urlhash = plasmaURL.urlHash(new URL(urlstring)); - Set words = plasmaCondenser.getWords(("yacyshare " + phrase + " " + descr).getBytes()); + //Set words = plasmaCondenser.getWords(("yacyshare " + phrase + " " + descr).getBytes()); + Set words = plasmaCondenser.getWords(); switchboard.removeReferences(urlhash, words); switchboard.loadedURL.remove(urlhash); } catch (Exception e) {