Skip to content

Commit

Permalink
Fix message for duplicate line name (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpaturet authored Nov 28, 2024
1 parent 76d701d commit eb4b9e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class DuplicateLineNameValidator extends AbstractDatasetValidator {
static final ValidationRule RULE = new ValidationRule(
"DUPLICATE_LINE_NAME",
"Duplicate line names found",
"%s is used in line files %s",
Severity.WARNING
);

Expand Down Expand Up @@ -55,8 +56,7 @@ public ValidationReport validate(ValidationReport validationReport) {
0,
0
),
entry.getKey().lineName() +
" is used in line files " +
entry.getKey().lineName(),
entry
.getValue()
.stream()
Expand Down

0 comments on commit eb4b9e9

Please sign in to comment.