Rename setter methods for PgpDecryptVerify.Builder

This commit is contained in:
Thialfihar
2014-04-29 19:01:11 +02:00
parent 324971e448
commit 1f7c61a331
3 changed files with 13 additions and 13 deletions

View File

@@ -457,10 +457,10 @@ public class KeychainIntentService extends IntentService
}
},
inputData, outStream);
builder.progressable(this);
builder.setProgressable(this);
builder.allowSymmetricDecryption(true)
.passphrase(passphrase);
builder.setAllowSymmetricDecryption(true)
.setPassphrase(passphrase);
PgpDecryptVerifyResult decryptVerifyResult = builder.build().execute();