1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-26 22:32:07 +01:00

Change visibilit of non-API methods to package

This commit is contained in:
Paul Schaub 2021-05-27 13:47:04 +02:00
parent 629ebbd46d
commit e67854310d
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -226,15 +226,15 @@ public class EncryptionOptions {
return new HashMap<>(keyRingInfo);
}
public Set<SubkeyIdentifier> getEncryptionKeyIdentifiers() {
Set<SubkeyIdentifier> getEncryptionKeyIdentifiers() {
return new HashSet<>(encryptionKeys);
}
public Map<SubkeyIdentifier, KeyAccessor> getKeyViews() {
Map<SubkeyIdentifier, KeyAccessor> getKeyViews() {
return new HashMap<>(keyViews);
}
public SymmetricKeyAlgorithm getEncryptionAlgorithmOverride() {
SymmetricKeyAlgorithm getEncryptionAlgorithmOverride() {
return encryptionAlgorithmOverride;
}