diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-02-15 02:30:31 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-02-15 02:30:31 +0100 |
commit | e0111c2ec40b35db94f06d89c8ca50529fbbb401 (patch) | |
tree | 217ef9b5b075e3466959bc6d440d852dd05f5760 /OpenPGP-Keychain/src | |
parent | 5f39cb3ec0d1d3f77d48fdbb428a2147dfe11d03 (diff) | |
download | open-keychain-e0111c2ec40b35db94f06d89c8ca50529fbbb401.tar.gz open-keychain-e0111c2ec40b35db94f06d89c8ca50529fbbb401.tar.bz2 open-keychain-e0111c2ec40b35db94f06d89c8ca50529fbbb401.zip |
code simplifications
Diffstat (limited to 'OpenPGP-Keychain/src')
-rw-r--r-- | OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/RemoteServiceActivity.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/RemoteServiceActivity.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/RemoteServiceActivity.java index 8f619f37e..669c5c28f 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/RemoteServiceActivity.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/RemoteServiceActivity.java @@ -181,6 +181,7 @@ public class RemoteServiceActivity extends ActionBarActivity { ArrayList<String> dublicateUserIds = intent .getStringArrayListExtra(EXTRA_DUBLICATE_USER_IDS); + // TODO: do this with spannable instead of HTML to prevent parsing failures with weird user ids String text = new String(); text += "<b>" + getString(R.string.api_select_pub_keys_text) + "</b>"; text += "<br/><br/>"; @@ -209,7 +210,7 @@ public class RemoteServiceActivity extends ActionBarActivity { new View.OnClickListener() { @Override public void onClick(View v) { - // sdd key ids to params Bundle for new request + // add key ids to params Bundle for new request Bundle params = extras.getBundle(OpenPgpConstants.PI_RESULT_PARAMS); params.putLongArray(OpenPgpConstants.PARAMS_KEY_IDS, mSelectFragment.getSelectedMasterKeyIds()); @@ -297,12 +298,12 @@ public class RemoteServiceActivity extends ActionBarActivity { // return given params again, for calling the service method again Intent finishIntent = new Intent(); finishIntent.putExtra(OpenPgpConstants.PI_RESULT_PARAMS, params); - RemoteServiceActivity.this.setResult(RESULT_OK, finishIntent); + setResult(RESULT_OK, finishIntent); } else { - RemoteServiceActivity.this.setResult(RESULT_CANCELED); + setResult(RESULT_CANCELED); } - RemoteServiceActivity.this.finish(); + finish(); } }; @@ -318,7 +319,7 @@ public class RemoteServiceActivity extends ActionBarActivity { Log.d(Constants.TAG, "No passphrase for this secret key, encrypt directly!"); // return given params again, for calling the service method again Intent finishIntent = new Intent(); - finishIntent.putExtras(params); + finishIntent.putExtra(OpenPgpConstants.PI_RESULT_PARAMS, params); setResult(RESULT_OK, finishIntent); finish(); } |