Fix indentation

This commit is contained in:
Paul Schaub 2022-06-21 19:48:38 +02:00
parent b6975b38f1
commit 8d1794544a
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 3 additions and 3 deletions

View File

@ -87,9 +87,9 @@ public final class EncryptionStream extends OutputStream {
if (options.hasComment()) {
String[] commentLines = options.getComment().split("\n");
for (String commentLine : commentLines) {
if (!commentLine.trim().isEmpty()) {
ArmorUtils.addCommentHeader(armorOutputStream, commentLine.trim());
}
if (!commentLine.trim().isEmpty()) {
ArmorUtils.addCommentHeader(armorOutputStream, commentLine.trim());
}
}
}
outermostStream = armorOutputStream;