Commit 4bb78d5a authored by dreis2211's avatar dreis2211 Committed by Stephane Nicoll

Fix unchecked assignment in AutoConfigurationImportSelector

Closes gh-13908
parent 2b712bea
...@@ -489,8 +489,8 @@ public class AutoConfigurationImportSelector ...@@ -489,8 +489,8 @@ public class AutoConfigurationImportSelector
private final Set<String> exclusions; private final Set<String> exclusions;
private AutoConfigurationEntry() { private AutoConfigurationEntry() {
this.configurations = Collections.EMPTY_LIST; this.configurations = Collections.emptyList();
this.exclusions = Collections.EMPTY_SET; this.exclusions = Collections.emptySet();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment