diff --git a/source/de/anomic/plasma/plasmaCondenser.java b/source/de/anomic/plasma/plasmaCondenser.java index 830fbb2a2..fc9bf925a 100644 --- a/source/de/anomic/plasma/plasmaCondenser.java +++ b/source/de/anomic/plasma/plasmaCondenser.java @@ -63,7 +63,6 @@ import java.util.TreeSet; import de.anomic.htmlFilter.htmlFilterContentScraper; import de.anomic.htmlFilter.htmlFilterOutputStream; import de.anomic.kelondro.kelondroMSetTools; -import de.anomic.kelondro.kelondroNaturalOrder; public final class plasmaCondenser { @@ -170,7 +169,7 @@ public final class plasmaCondenser { private void createCondensement(InputStream is) { - words = new TreeMap(kelondroNaturalOrder.naturalOrder); + words = new TreeMap(/*kelondroNaturalOrder.naturalOrder*/); sentences = new HashMap(); HashSet currsentwords = new HashSet(); StringBuffer sentence = new StringBuffer(100); @@ -441,7 +440,7 @@ public final class plasmaCondenser { // we reconstruct the word hashtable // and sort the entries by the number of occurrences // this structure is needed to print out a sorted list of words - TreeMap sortedWords = new TreeMap(kelondroNaturalOrder.naturalOrder); + TreeMap sortedWords = new TreeMap(/*kelondroNaturalOrder.naturalOrder*/); it = words.entrySet().iterator(); // enumerates the keys in ascending order while (it.hasNext()) { entry = (Map.Entry) it.next();