Skip to content

Commit

Permalink
SystemRegistryImpl: fixed NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
mattirn committed Dec 12, 2020
1 parent b470ba1 commit b602f92
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,9 @@ private class NamesAndValues {
private final Map<String,List<String>> names = new HashMap<>();
private List<String> namedPipes;

public NamesAndValues() {}
public NamesAndValues() {
this(null);
}

@SuppressWarnings("unchecked")
public NamesAndValues(ConfigurationPath configPath) {
Expand Down

0 comments on commit b602f92

Please sign in to comment.