mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Fix indentation
This commit is contained in:
parent
b6975b38f1
commit
8d1794544a
1 changed files with 3 additions and 3 deletions
|
@ -87,9 +87,9 @@ public final class EncryptionStream extends OutputStream {
|
||||||
if (options.hasComment()) {
|
if (options.hasComment()) {
|
||||||
String[] commentLines = options.getComment().split("\n");
|
String[] commentLines = options.getComment().split("\n");
|
||||||
for (String commentLine : commentLines) {
|
for (String commentLine : commentLines) {
|
||||||
if (!commentLine.trim().isEmpty()) {
|
if (!commentLine.trim().isEmpty()) {
|
||||||
ArmorUtils.addCommentHeader(armorOutputStream, commentLine.trim());
|
ArmorUtils.addCommentHeader(armorOutputStream, commentLine.trim());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
outermostStream = armorOutputStream;
|
outermostStream = armorOutputStream;
|
||||||
|
|
Loading…
Reference in a new issue