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

@@ -337,10 +337,10 @@ public class OpenPgpService extends RemoteService {
},
inputData, os
);
builder.allowSymmetricDecryption(false) // no support for symmetric encryption
.allowedKeyIds(allowedKeyIds) // allow only private keys associated with
builder.setAllowSymmetricDecryption(false) // no support for symmetric encryption
.setAllowedKeyIds(allowedKeyIds) // allow only private keys associated with
// accounts of this app
.passphrase(passphrase);
.setPassphrase(passphrase);
PgpDecryptVerifyResult decryptVerifyResult;
try {