diff --git a/source/de/anomic/plasma/plasmaWordIndex.java b/source/de/anomic/plasma/plasmaWordIndex.java index 8a615616b..7ea5b24a3 100644 --- a/source/de/anomic/plasma/plasmaWordIndex.java +++ b/source/de/anomic/plasma/plasmaWordIndex.java @@ -384,9 +384,9 @@ public final class plasmaWordIndex { public static final int RL_WORDFILES = 3; public synchronized TreeSet wordHashes(String startHash, int resourceLevel, boolean rot, int count) { - kelondroOrder hashOrder = (kelondroOrder) indexOrder.clone(); - if (rot) hashOrder.rotate(startHash.getBytes()); else hashOrder.rotate(null); - TreeSet hashes = new TreeSet(hashOrder); + //kelondroOrder hashOrder = (kelondroOrder) indexOrder.clone(); + //if (rot) hashOrder.rotate(startHash.getBytes()); else hashOrder.rotate(null); + TreeSet hashes = new TreeSet(/*hashOrder*/); Iterator i = wordHashes(startHash, resourceLevel, rot); String hash; while ((hashes.size() < count) && (i.hasNext())) {