Skip to content

Commit

Permalink
Fix new line in comments. (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
random1223 authored Aug 29, 2024
1 parent 16025bd commit f87770d
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 f87770d

Please sign in to comment.