Skip to content

Commit e60af72

Browse files
committed
Merge pull request #13908 from dreis2211:unchecked-assignment-fixes
* pr/13908: Fix unchecked assignment in AutoConfigurationImportSelector
2 parents 2b712be + 4bb78d5 commit e60af72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationImportSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,8 @@ protected static class AutoConfigurationEntry {
489489
private final Set<String> exclusions;
490490

491491
private AutoConfigurationEntry() {
492-
this.configurations = Collections.EMPTY_LIST;
493-
this.exclusions = Collections.EMPTY_SET;
492+
this.configurations = Collections.emptyList();
493+
this.exclusions = Collections.emptySet();
494494
}
495495

496496
/**

0 commit comments

Comments
 (0)