Skip to content

Commit

Permalink
Remove space.
Browse files Browse the repository at this point in the history
Signed-off-by: Bertrand Rix <[email protected]>
  • Loading branch information
obrix committed Jan 27, 2025
1 parent e5db242 commit 91da360
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static void applyListOfActions(List<LfAction> actions, LfNetwork network,
.filter(action -> !(action instanceof AbstractLfBranchAction<?>))
.forEach(action -> {
if (!action.apply(network, contingency, networkParameters)) {
LOGGER.warn("Action {} : may not have been applied successfully.", action.getId());
LOGGER.warn("Action {}: may not have been applied successfully.", action.getId());
}
});
}
Expand All @@ -86,7 +86,7 @@ private static void updateConnectivity(List<LfAction> branchActions, LfNetwork n

branchActions.forEach(action -> {
if (!((AbstractLfBranchAction<?>) action).applyOnConnectivity(network, connectivity)) {
LOGGER.warn("Action {} : may not have been applied successfully.", action.getId());
LOGGER.warn("Action {}: may not have been applied successfully.", action.getId());
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public LfAreaInterchangeTargetAction(String id, AreaInterchangeTargetAction acti
@Override
public boolean apply(LfNetwork network, LfContingency contingency, LfNetworkParameters networkParameters) {
if (!networkParameters.isAreaInterchangeControl()) {
LOGGER.warn("AreaInterchangeTargetAction action {} : area interchange control is disabled", action.getId());
LOGGER.warn("AreaInterchangeTargetAction action {}: area interchange control is disabled", action.getId());
}
LfArea area = network.getAreaById(action.getAreaId());
if (area != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ boolean findEnabledDisabledBranches(LfNetwork lfNetwork) {
}
return true;
} else {
LOGGER.warn("Switch action {} : branch matching switch id {} not found", action.getId(), action.getSwitchId());
LOGGER.warn("Switch action {}: branch matching switch id {} not found", action.getId(), action.getSwitchId());
return false;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ boolean findEnabledDisabledBranches(LfNetwork lfNetwork) {
}
return true;
} else {
LOGGER.warn("TerminalsConnectionAction action {} : branch matching element id {} not found", action.getId(), action.getElementId());
LOGGER.warn("TerminalsConnectionAction action {}: branch matching element id {} not found", action.getId(), action.getElementId());
return false;
}
}
Expand Down

0 comments on commit 91da360

Please sign in to comment.