Skip to content

Commit

Permalink
trim comment lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
ferenc-hechler authored and vanitasvitae committed Feb 24, 2022
1 parent 7a77d08 commit a1deb53
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -79,7 +79,7 @@ private void prepareArmor() {
String[] commentLines = options.getComment().split("\n");
for (String commentLine : commentLines) {
if (!commentLine.trim().isEmpty()) {
ArmorUtils.addCommentHeader(armorOutputStream, commentLine);
ArmorUtils.addCommentHeader(armorOutputStream, commentLine.trim());
}
}
}
Expand Down

0 comments on commit a1deb53

Please sign in to comment.