Fix unchecked assignment in AutoConfigurationImportSelector
Closes gh-13908
This commit is contained in:
committed by
Stephane Nicoll
parent
2b712bea5f
commit
4bb78d5a48
@@ -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