1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-25 21:14:49 +02:00

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

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;