diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-02-17 20:41:54 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-02-17 20:41:54 +0100 |
commit | 0597b50258c4cfc9e0af6003b069dadff0d6203d (patch) | |
tree | 65f8f31c104ab6cdcdd24d31a81b39559ca9de4f | |
parent | 286b27522ef48a729bf55dfe7ab415caaac84238 (diff) | |
download | open-keychain-0597b50258c4cfc9e0af6003b069dadff0d6203d.tar.gz open-keychain-0597b50258c4cfc9e0af6003b069dadff0d6203d.tar.bz2 open-keychain-0597b50258c4cfc9e0af6003b069dadff0d6203d.zip |
documentation
-rw-r--r-- | OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/OpenPgpService.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/OpenPgpService.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/OpenPgpService.java index 31c5662dc..f6aaffbf6 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/OpenPgpService.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/service/remote/OpenPgpService.java @@ -427,10 +427,13 @@ public class OpenPgpService extends RemoteService { } /** - * Checks that params != null and API version fits + * Check requirements: + * - params != null + * - has supported API version + * - is allowed to call the service (access has been granted) * * @param params - * @return + * @return null if everything is okay, or a Bundle with an error/PendingIntent */ private Bundle checkRequirements(Bundle params) { // params Bundle is required! |