1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-21 02:54:51 +02:00

Change constructor visibility of KeyAccessor

This commit is contained in:
Paul Schaub 2021-08-15 15:41:44 +02:00
parent 9ac0ee4043
commit 09ffd527b5

View file

@ -31,7 +31,7 @@ public abstract class KeyAccessor {
protected final KeyRingInfo info;
protected final SubkeyIdentifier key;
public KeyAccessor(KeyRingInfo info, SubkeyIdentifier key) {
KeyAccessor(KeyRingInfo info, SubkeyIdentifier key) {
this.info = info;
this.key = key;
}