mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-20 20:59:07 +00:00
Prior to this commit, an IndexAccessor could not provide support for a Collection target type, since the built-in support for indexing into a Collection in SpEL's Indexer took precedence. This commit allows an IndexAccessor to support custom Collection target types by separating the built-in List and Collection support and applying the built-in Collection support after custom index accessors have been applied. Closes gh-32736