From 50e7fd96b8508f91ea7d27ee05d86be6ca8455ec Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Sun, 8 Aug 2021 18:13:48 +0200 Subject: [PATCH] Fix javadoc issues --- .../src/main/java/org/pgpainless/util/ArmorUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgpainless-core/src/main/java/org/pgpainless/util/ArmorUtils.java b/pgpainless-core/src/main/java/org/pgpainless/util/ArmorUtils.java index 5c9448e1..3f9aa703 100644 --- a/pgpainless-core/src/main/java/org/pgpainless/util/ArmorUtils.java +++ b/pgpainless-core/src/main/java/org/pgpainless/util/ArmorUtils.java @@ -213,10 +213,10 @@ public class ArmorUtils { * For {@link PGPPublicKeyRingCollection#PGPPublicKeyRingCollection(InputStream, KeyFingerPrintCalculator)} * or {@link PGPSecretKeyRingCollection#PGPSecretKeyRingCollection(InputStream, KeyFingerPrintCalculator)} * to read all PGPKeyRings properly, we apparently have to make sure that the {@link InputStream} that is given - * as constructor argument is a {@link PGPUtil.BufferedInputStreamExt}. + * as constructor argument is a PGPUtil.BufferedInputStreamExt. * Since {@link PGPUtil#getDecoderStream(InputStream)} will return an {@link org.bouncycastle.bcpg.ArmoredInputStream} * if the underlying input stream contains armored data, we have to nest two method calls to make sure that the - * end-result is a {@link PGPUtil.BufferedInputStreamExt}. + * end-result is a PGPUtil.BufferedInputStreamExt. * * This is a hacky solution. *