aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-03-07 22:39:53 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-03-07 22:39:53 +0100
commit882333ce0578fd4aa906d2f333c224bbe917217e (patch)
treef029a1e4d24356dff54e095da3845962a32862e1 /OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java
parent7b1e3fef1938e7b37986a5773cff1339fe8a5514 (diff)
parent477d06c43af39090ca03a2740f7183d70e802141 (diff)
downloadopen-keychain-882333ce0578fd4aa906d2f333c224bbe917217e.tar.gz
open-keychain-882333ce0578fd4aa906d2f333c224bbe917217e.tar.bz2
open-keychain-882333ce0578fd4aa906d2f333c224bbe917217e.zip
Merge pull request #366 from uberspot/master
Minor code clean up
Diffstat (limited to 'OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java')
-rw-r--r--OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java
index ccd6ff8df..252be1036 100644
--- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java
+++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpDecryptVerify.java
@@ -743,10 +743,9 @@ public class PgpDecryptVerify {
* @param sig
* @param line
* @throws SignatureException
- * @throws IOException
*/
private static void processLine(PGPSignature sig, byte[] line)
- throws SignatureException, IOException {
+ throws SignatureException {
int length = getLengthWithoutWhiteSpace(line);
if (length > 0) {
sig.update(line, 0, length);