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

Fix comments

This commit is contained in:
Paul Schaub 2023-06-27 14:49:29 +02:00
parent 9f4b11174e
commit 1a23c3849e
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -154,9 +154,9 @@ public class WebOfTrust implements CertificateAuthority {
// certificate synopses keyed by fingerprint
private final Map<OpenPgpFingerprint, CertSynopsis> certSynopsisMap = new HashMap<>();
// Issuer -> Target, edges keyed by issuer
// Issuer -> Targets, edges keyed by issuer
private final Map<OpenPgpFingerprint, List<CertificationSet>> edges = new HashMap<>();
// Target -> Issuer, edges keyed by target
// Target -> Issuers, edges keyed by target
private final Map<OpenPgpFingerprint, List<CertificationSet>> reverseEdges = new HashMap<>();
private final Policy policy;