Remove outdated javadoc @throws annotations

This commit is contained in:
Paul Schaub 2023-06-08 03:18:24 +02:00
parent 40af7c3ce7
commit 25cde8225d
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 0 additions and 2 deletions

View File

@ -179,7 +179,6 @@ public interface SecretKeyRingEditorInterface {
*
* @throws PGPException in case we cannot generate a binding signature for the subkey
* @throws IOException in case of an IO error
* @throws NoSuchAlgorithmException in case of missing algorithm support in the crypto backend
*/
SecretKeyRingEditorInterface addSubKey(
@Nonnull PGPKeyPair subkey,

View File

@ -241,7 +241,6 @@ public final class SignatureUtils {
* @param maxIterations number of loop iterations until reading is aborted
* @return list of encountered signatures
* @throws IOException in case of a stream error
* @throws PGPException in case of an OpenPGP error
*/
public static List<PGPSignature> readSignatures(InputStream inputStream, int maxIterations) throws IOException {
List<PGPSignature> signatures = new ArrayList<>();