Skip to content

Commit

Permalink
Fix unchecked assignment in AutoConfigurationImportSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
dreis2211 authored and snicoll committed Jul 26, 2018
1 parent 2b712be commit 4bb78d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,8 @@ protected static class AutoConfigurationEntry {
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();
}

/**
Expand Down

0 comments on commit 4bb78d5

Please sign in to comment.