1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-19 10:52:05 +01:00

Fix property access

This commit is contained in:
Paul Schaub 2023-10-09 12:45:37 +02:00
parent b3f4ba052a
commit 13082215d6
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -82,7 +82,7 @@ class KeyRingBuilder : KeyRingBuilderInterface<KeyRingBuilder> {
} }
} }
private fun keyIsCertificationCapable(keySpec: KeySpec) = keySpec.keyType.canCertify() private fun keyIsCertificationCapable(keySpec: KeySpec) = keySpec.keyType.canCertify
override fun build(): PGPSecretKeyRing { override fun build(): PGPSecretKeyRing {
val keyFingerprintCalculator = ImplementationFactory.getInstance() val keyFingerprintCalculator = ImplementationFactory.getInstance()