mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-12-16 17:21:08 +01:00
Rename SubkeyLookup.getCertificateFingerprintsForSubkeyId()
This commit is contained in:
parent
5acd1f1812
commit
3193df37b0
8 changed files with 23 additions and 23 deletions
|
|
@ -20,7 +20,7 @@ public abstract class AbstractCertificateStore implements CertificateStore {
|
|||
|
||||
public Set<Certificate> getCertificatesBySubkeyId(long subkeyId)
|
||||
throws IOException {
|
||||
Set<String> identifiers = getCertificatesForSubkeyId(subkeyId);
|
||||
Set<String> identifiers = getCertificateFingerprintsForSubkeyId(subkeyId);
|
||||
if (identifiers.isEmpty()) {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ public interface SubkeyLookup {
|
|||
* @param subkeyId subkey id
|
||||
* @return fingerprint of the certificate
|
||||
*/
|
||||
Set<String> getCertificatesForSubkeyId(long subkeyId) throws IOException;
|
||||
Set<String> getCertificateFingerprintsForSubkeyId(long subkeyId) throws IOException;
|
||||
|
||||
/**
|
||||
* Record, which certificate the subkey-ids in the list belong to.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue