Skip to content

Commit

Permalink
Updated model/DetailsTableModel.java to avoid checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
debayangg committed Dec 29, 2023
1 parent 9a5e6fd commit 590cf6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ protected String formatSeverity(final Severity severity) {
protected String formatProperty(final String property, final String value) {
String renderedValue = render(value);
if (StringUtils.isBlank(value)) {
renderedValue="-";
renderedValue = "-";
}
return String.format("<a href=\"%s.%d/\">%s</a>", property, value.hashCode(), renderedValue);
}
Expand Down

0 comments on commit 590cf6d

Please sign in to comment.