mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +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