From 054828ef8c1fd1ff0c0bffa183fcd663b9e0adbc Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Mon, 29 Aug 2022 10:37:55 +0200 Subject: [PATCH] Remove deprecated EncryptionResult.getSymmetricKeyAlgorithm() Use getEncryptionAlgorithm() instead --- .../encryption_signing/EncryptionResult.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pgpainless-core/src/main/java/org/pgpainless/encryption_signing/EncryptionResult.java b/pgpainless-core/src/main/java/org/pgpainless/encryption_signing/EncryptionResult.java index 10342a3c..4112092c 100644 --- a/pgpainless-core/src/main/java/org/pgpainless/encryption_signing/EncryptionResult.java +++ b/pgpainless-core/src/main/java/org/pgpainless/encryption_signing/EncryptionResult.java @@ -46,19 +46,6 @@ public final class EncryptionResult { this.fileEncoding = encoding; } - /** - * Return the symmetric encryption algorithm used to encrypt the message. - * @return symmetric encryption algorithm - * - * @deprecated use {@link #getEncryptionAlgorithm()} instead. - * - * TODO: Remove in 1.2.X - */ - @Deprecated - public SymmetricKeyAlgorithm getSymmetricKeyAlgorithm() { - return getEncryptionAlgorithm(); - } - /** * Return the symmetric encryption algorithm used to encrypt the message. *