mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-22 19:08:00 +01:00
Please the checkstyle checker
This commit is contained in:
parent
9ab0c35b78
commit
1e33408098
1 changed files with 2 additions and 2 deletions
|
@ -91,10 +91,10 @@ public class DecryptAndVerifyMessageTest {
|
|||
.addDecryptionKey(juliet)
|
||||
.addVerificationCert(KeyRingUtils.publicKeyRingFrom(juliet));
|
||||
|
||||
try (final DecryptionStream decryptor = PGPainless.decryptAndOrVerify()
|
||||
try (DecryptionStream decryptor = PGPainless.decryptAndOrVerify()
|
||||
.onInputStream(new ByteArrayInputStream(encryptedMessage.getBytes()))
|
||||
.withOptions(options);
|
||||
final ByteArrayOutputStream toPlain = new ByteArrayOutputStream()) {
|
||||
ByteArrayOutputStream toPlain = new ByteArrayOutputStream()) {
|
||||
Streams.pipeAll(decryptor, toPlain);
|
||||
assertEquals(-1, decryptor.read());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue