Commit e60af724 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #13908 from dreis2211:unchecked-assignment-fixes

* pr/13908:
  Fix unchecked assignment in AutoConfigurationImportSelector
parents 2b712bea 4bb78d5a
......@@ -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();
}
/**
......
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