You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have changed the implementation of GenericComparator where the value is now retrieved via
// Retrieve field values of the objects
Object value1 = ExpressionUtils.getValue(object1, propertyPath);
Object value2 = ExpressionUtils.getValue(object2, propertyPath);
formerly
// Retrieve field values of the objects
Object value1 = new LazyGetterMethod(object1, propertyPath).invoke();
Object value2 = new LazyGetterMethod(object2, propertyPath).invoke();
The problem is that we have the DefaultLocalizableModel which is often used within our application.
public class DefaultLocalizableRowModel<I extends Serializable, L extends LocalizableEntity<I, ? extends LocalizedEntity>> extends AbstractLocalizableRowModel<I, L> {
private static final long serialVersionUID = -5522498879203353535L;
}
So the type cannot be retrieved and now every usage of GenericComparator with DefaultLocalizableRowModel will fail.
This is affecting every module.
The text was updated successfully, but these errors were encountered:
You have changed the implementation of GenericComparator where the value is now retrieved via
formerly
The problem is that we have the DefaultLocalizableModel which is often used within our application.
public class DefaultLocalizableRowModel<I extends Serializable, L extends LocalizableEntity<I, ? extends LocalizedEntity>> extends AbstractLocalizableRowModel<I, L> {
}
So the type cannot be retrieved and now every usage of GenericComparator with DefaultLocalizableRowModel will fail.
This is affecting every module.
The text was updated successfully, but these errors were encountered: