mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
This commit also points out that `null` supplied as a single value for a varargs array of type Optional will be kept as `null` instead of being converted to Optional.empty(); whereas, if more than one value is passed to such a varargs array a null value will be properly converted to Optional.empty(). See gh-27719