diff options
author | Dominik <dominik@dominikschuermann.de> | 2012-06-20 20:06:17 +0300 |
---|---|---|
committer | Dominik <dominik@dominikschuermann.de> | 2012-06-20 20:06:17 +0300 |
commit | 1e78dd165a2d32d28e3a77c512b41102dedd5cc8 (patch) | |
tree | 1f035e144895ba15891dcb5f0af52ab60cfeba95 /org_apg_integration_lib/src | |
parent | 4130123e77c3ca2ea098f7c54dc143051f96b08d (diff) | |
download | open-keychain-1e78dd165a2d32d28e3a77c512b41102dedd5cc8.tar.gz open-keychain-1e78dd165a2d32d28e3a77c512b41102dedd5cc8.tar.bz2 open-keychain-1e78dd165a2d32d28e3a77c512b41102dedd5cc8.zip |
backward compatible extras, restructuring
Diffstat (limited to 'org_apg_integration_lib/src')
-rw-r--r-- | org_apg_integration_lib/src/org/thialfihar/android/apg/integration/ApgIntentHelper.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/org_apg_integration_lib/src/org/thialfihar/android/apg/integration/ApgIntentHelper.java b/org_apg_integration_lib/src/org/thialfihar/android/apg/integration/ApgIntentHelper.java index ee8754e51..d38f1d3cc 100644 --- a/org_apg_integration_lib/src/org/thialfihar/android/apg/integration/ApgIntentHelper.java +++ b/org_apg_integration_lib/src/org/thialfihar/android/apg/integration/ApgIntentHelper.java @@ -193,13 +193,6 @@ public class ApgIntentHelper { break; } apgData.setEncryptedData(data.getStringExtra(Constants.EXTRA_ENCRYPTED_MESSAGE)); - // this was a stupid bug in an earlier version, just gonna leave this in for an APG - // version or two - if (apgData.getEncryptedData() == null) { - apgData.setEncryptedData(data.getStringExtra(Constants.EXTRA_DECRYPTED_MESSAGE)); - } - if (apgData.getEncryptedData() != null) { - } break; case Constants.DECRYPT_MESSAGE: @@ -215,7 +208,6 @@ public class ApgIntentHelper { false)); apgData.setDecryptedData(data.getStringExtra(Constants.EXTRA_DECRYPTED_MESSAGE)); - break; default: |