Skip to content

Commit

Permalink
Fix visibility of default LF parameters loader's constructor (#3164)
Browse files Browse the repository at this point in the history
Signed-off-by: Hugo KULESZA <[email protected]>
  • Loading branch information
HugoKulesza authored Oct 1, 2024
1 parent 5e5e9a4 commit f1fadb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public abstract class AbstractLoadFlowDefaultParametersLoader implements LoadFlo
private final String name;
private final String jsonParametersFile;

AbstractLoadFlowDefaultParametersLoader(String name, String jsonParametersFile) {
protected AbstractLoadFlowDefaultParametersLoader(String name, String jsonParametersFile) {
this.name = Objects.requireNonNull(name);
this.jsonParametersFile = Objects.requireNonNull(jsonParametersFile);
}
Expand Down

0 comments on commit f1fadb9

Please sign in to comment.