fix: remove stale comment

This commit is contained in:
Harsh Shandilya 2022-10-07 19:29:49 +05:30
parent bb385084d0
commit f778eab94e
No known key found for this signature in database

View file

@ -45,7 +45,6 @@ constructor(
out: ByteArrayOutputStream, out: ByteArrayOutputStream,
) { ) {
val keys = pgpKeyManager.getAllKeys().unwrap() val keys = pgpKeyManager.getAllKeys().unwrap()
// Iterates through the keys until the first successful decryption, then returns.
pgpCryptoHandler.decrypt(keys, password, message, out) pgpCryptoHandler.decrypt(keys, password, message, out)
} }