mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 12:39:03 +00:00
Fix unchecked assignment in AutoConfigurationImportSelector
Closes gh-13908
This commit is contained in:
committed by
Stephane Nicoll
parent
2b712bea5f
commit
4bb78d5a48
+2
-2
@@ -489,8 +489,8 @@ public class AutoConfigurationImportSelector
|
||||
private final Set<String> exclusions;
|
||||
|
||||
private AutoConfigurationEntry() {
|
||||
this.configurations = Collections.EMPTY_LIST;
|
||||
this.exclusions = Collections.EMPTY_SET;
|
||||
this.configurations = Collections.emptyList();
|
||||
this.exclusions = Collections.emptySet();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user