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 <hugo.kulesza@rte-france.com>
(cherry picked from commit f1fadb9)
  • Loading branch information
HugoKulesza authored and olperr1 committed Oct 11, 2024
1 parent f99ee7d commit 9745f3c
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 9745f3c

Please sign in to comment.