1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-15 13:19:38 +02:00

fix reported ":pgpainless-core:checkstyleMain" whitespace issues.

This commit is contained in:
feri 2022-02-23 22:20:42 +01:00
parent f29caaf7d9
commit 151b765302

View file

@ -111,9 +111,9 @@ public final class ProducerOptions {
/**
* set the comment for header in ascii armored output.
* The default value is null, which means no comment header is added.
* Multiline comments are possible seperated with '\\n'.
* Multiline comments are possible using '\\n'.
*
* @param comment
* @param comment comment header text
* @return builder
*/
public ProducerOptions setComment(String comment) {
@ -141,7 +141,7 @@ public final class ProducerOptions {
public boolean hasComment() {
return comment != null;
}
public ProducerOptions setCleartextSigned() {
if (signingOptions == null) {
throw new IllegalArgumentException("Signing Options cannot be null if cleartext signing is enabled.");