Skip to content

Commit

Permalink
fix AbstractPhaseShifterModification
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Rol <nicolas.rol@rte-france.com>
  • Loading branch information
rolnico committed Jun 10, 2024
1 parent 8f7d37d commit 332ccbe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
public abstract class AbstractPhaseShifterModification extends AbstractNetworkModification {

protected final String phaseShifterId;
private static final String TRANSFORMER_NOT_FOUND = "Transformer %s not found";
private static final String NOT_A_PHASE_SHIFTER = "Transformer %s is not a phase shifter";
private static final String TRANSFORMER_NOT_FOUND = "Transformer '%s' not found";
private static final String NOT_A_PHASE_SHIFTER = "Transformer '%s' is not a phase shifter";

protected AbstractPhaseShifterModification(String phaseShifterId) {
this.phaseShifterId = Objects.requireNonNull(phaseShifterId);
Expand Down

0 comments on commit 332ccbe

Please sign in to comment.