Closed
Description
Overview
The initial PR (#907) implemented the following ordering in AbstractNestablePropertyAccessor
, supported by tests:
List
Map
Iterable
The version that was finally added in c20a2e4 implements the following ordering:
List
Iterable
(replacingSet
)Map
This causes any Map
that implements Iterable
to fail binding in Spring 6.1+, where they functioned previously.
It seems less likely that iterables will implement Map
in a broken fashion, as opposed to the other way around.