Skip to content

Commit

Permalink
Updating reference values in composition to avoid urls (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schuler authored Jan 5, 2023
1 parent bcf0c37 commit 290faa5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,13 @@ default void resolveIssues(Composition composition, MeasureReport report, List<D
report.getGroup().forEach(
group -> {
if (group.hasId() && group.getId().equals(extension.getValue().toString())) {
section.addEntry(new Reference(issue.getIdElement()));
section.addEntry(new Reference(issue.getIdElement().toUnqualifiedVersionless()));
if (group.hasCode()) {
section.setCode(group.getCode());
}
}
});
section.setFocus(new Reference(report.getIdElement().getValue()));
section.setFocus(new Reference(report.getIdElement().toUnqualifiedVersionless()));
}
});
composition.addSection(section);
Expand Down

0 comments on commit 290faa5

Please sign in to comment.