https://issues.apache.org/bugzilla/show_bug.cgi?id=55691

--- Comment #3 from taly <[email protected]> ---
Did a little more digging apparently this snippet of code was add to
javax.el.ArrayELResolver.setValue()

if (value != null &&
        !base.getClass().getComponentType().isAssignableFrom(
                value.getClass())) {
    throw new ClassCastException(message(context,
            "objectNotAssignable",
            new Object[] {value.getClass().getName(),
            base.getClass().getComponentType().getName()}));
}

isAssignableFrom() does not take into account autoboxing so therefore this
change is breaking setValue()

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to