meta 3.5.0.30 http://jira.mfd.msk:8088/browse/CLS-344 обновление классов... (поправил тест imdg)

This commit is contained in:
AKurakin 2023-05-30 11:05:25 +03:00
parent 30161a3291
commit cf62aa4586

View file

@ -72,7 +72,7 @@ public class CheckerBusinessMapStore<T> {
} catch (NoSuchMethodException exception2) { // Имеется некоторое наследование для удобства обработки данных.
theClass = theClass.getSuperclass();
log.debug("settingOperations for Superclass 2 " + theClass.getName());
method = clazz.getSuperclass().getDeclaredMethod(settingOperation.getMethodName(), settingOperation.getParameterTypes());
method = theClass.getDeclaredMethod(settingOperation.getMethodName(), settingOperation.getParameterTypes());
}
}
method.invoke(predictableObj, settingOperation.getParams());