Skip to content

Commit

Permalink
chore: fix checkstyle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert authored Apr 10, 2024
1 parent bf6da19 commit a964e5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class FacetedWorldConfigurator implements WorldConfigurator {
private final Map<String, Component> properties = Maps.newHashMap();

private final List<ConfigurableFacetProvider> providers;
private HashMap<String, Set<PropertyChangeListener>> listeners = new HashMap<>(); // OK
private Map<String, Set<PropertyChangeListener>> listeners = new HashMap<>();

public FacetedWorldConfigurator(List<ConfigurableFacetProvider> providersList) {
for (ConfigurableFacetProvider provider : providersList) {
Expand Down

0 comments on commit a964e5b

Please sign in to comment.