mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-25 12:27:58 +01:00
Fix comments
This commit is contained in:
parent
9f4b11174e
commit
1a23c3849e
1 changed files with 2 additions and 2 deletions
|
@ -154,9 +154,9 @@ public class WebOfTrust implements CertificateAuthority {
|
||||||
// certificate synopses keyed by fingerprint
|
// certificate synopses keyed by fingerprint
|
||||||
private final Map<OpenPgpFingerprint, CertSynopsis> certSynopsisMap = new HashMap<>();
|
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<>();
|
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 Map<OpenPgpFingerprint, List<CertificationSet>> reverseEdges = new HashMap<>();
|
||||||
|
|
||||||
private final Policy policy;
|
private final Policy policy;
|
||||||
|
|
Loading…
Reference in a new issue