fix for bug in merge operator initialization

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5577 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 16 years ago
parent b57c9da1f8
commit b1f9c00118

@ -145,7 +145,7 @@ public class MergeIterator<E> implements CloneableIterator<E> {
static {
Method meth = null;
try {
final Class<?> c = Class.forName("de.anomic.kelondro.kelondroMergeIterator");
final Class<?> c = Class.forName("de.anomic.kelondro.order.MergeIterator");
meth = c.getMethod("mergeEqualByReplace", new Class[]{Object.class, Object.class});
} catch (final SecurityException e) {
System.out.println("Error while initializing simpleMerge (1): " + e.getMessage());

Loading…
Cancel
Save