aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-09-16 19:54:57 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-09-16 19:54:57 +0200
commit6624d1f8304a07ac43e7f22a138262bba9782758 (patch)
tree6e37299002a48c0264cfd6b19a19249b2790dfd8 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java
parentece06b1933c26688d2eb6b7fa8657acbb8833728 (diff)
downloadopen-keychain-6624d1f8304a07ac43e7f22a138262bba9782758.tar.gz
open-keychain-6624d1f8304a07ac43e7f22a138262bba9782758.tar.bz2
open-keychain-6624d1f8304a07ac43e7f22a138262bba9782758.zip
mime: respect charset header (default to utf-8)
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java
index e8be9fa78..95cf179af 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/DecryptVerifyResult.java
@@ -34,9 +34,6 @@ public class DecryptVerifyResult extends InputPendingResult {
OpenPgpSignatureResult mSignatureResult;
OpenPgpDecryptionResult mDecryptionResult;
OpenPgpMetadata mDecryptionMetadata;
- // This holds the charset which was specified in the ascii armor, if specified
- // https://tools.ietf.org/html/rfc4880#page56
- String mCharset;
CryptoInputParcel mCachedCryptoInputParcel;
@@ -96,14 +93,6 @@ public class DecryptVerifyResult extends InputPendingResult {
mDecryptionMetadata = decryptMetadata;
}
- public String getCharset () {
- return mCharset;
- }
-
- public void setCharset(String charset) {
- mCharset = charset;
- }
-
public void setOutputBytes(byte[] outputBytes) {
mOutputBytes = outputBytes;
}