bugfix for merge method (caused by bad refactoring)

see http://www.yacy-forum.de/viewtopic.php?p=25529#25529

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2581 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 40965e183e
commit 0ee7e45413

@ -186,7 +186,7 @@ public class indexContainer extends kelondroRowSet {
public static Method containerMergeMethod = null; public static Method containerMergeMethod = null;
static { static {
try { try {
Class c = Class.forName("de.anomic.index.indexRowSetContainer"); Class c = Class.forName("de.anomic.index.indexContainer");
containerMergeMethod = c.getMethod("containerMerge", new Class[]{Object.class, Object.class}); containerMergeMethod = c.getMethod("containerMerge", new Class[]{Object.class, Object.class});
} catch (SecurityException e) { } catch (SecurityException e) {
System.out.println("Error while initializing containerMerge: " + e.getMessage()); System.out.println("Error while initializing containerMerge: " + e.getMessage());

Loading…
Cancel
Save