Skip to content

Commit

Permalink
Fix new line in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
random1223 committed Aug 29, 2024
1 parent 16025bd commit e529b51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public static void extracted(CodeAnalysisIssueDto issueDto, StringBuilder sb) {
sb.append("[").append(issueDto.getCweId()).append("] ");
}
if (issueDto.getDescription() != null)
sb.append(" ").append(issueDto.getDescription());
sb.append(" ").append(issueDto.getDescription().replaceAll("\\n", ""));
}
}

0 comments on commit e529b51

Please sign in to comment.