Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Dupuy <florian.dupuy@rte-france.com>
  • Loading branch information
flo-dup committed Mar 14, 2023
1 parent 4286a9e commit 6799a7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public List<VarConnection> getVarConnectionsWith(Model connected) {
VarConnection stateConnection = new VarConnection("currentLimitAutomaton_order", connectedLineModel.getStateVarName());

if (connectedLineModel instanceof DefaultLineModel) {
VarConnection deactivationConnection = new VarConnection("currentLimitAutomaton_AutomatonExists", ((DefaultLineModel) connectedLineModel).getDesactivateCurrentLimitsVarName());
VarConnection deactivationConnection = new VarConnection("currentLimitAutomaton_AutomatonExists", ((DefaultLineModel) connectedLineModel).getDeactivateCurrentLimitsVarName());
return List.of(iConnection, stateConnection, deactivationConnection);
} else {
return List.of(iConnection, stateConnection);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public String getStateValueVarName() {
return "@NAME@_state_value";
}

public String getDesactivateCurrentLimitsVarName() {
public String getDeactivateCurrentLimitsVarName() {
return "@NAME@_desactivate_currentLimits";
}
}

0 comments on commit 6799a7d

Please sign in to comment.