*) Bugfix: plasmaCondenser.getWords() was not used correctly

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@24 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
(no author) 20 years ago
parent 0a6cf3f5e7
commit ea4849716f

@ -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) {

Loading…
Cancel
Save