mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 20:09:02 +00:00
This commits adds a checkstyle rule to not use List.of(), Set.of() and Map.of(), preferring Collections.emptyList(), emptySet(), and emptyMap() respectively. It replaces usages of these methods across the codebase. See gh-32655