1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-09-27 18:19:34 +02:00

Add todos

This commit is contained in:
Paul Schaub 2023-06-25 13:04:25 +02:00
parent 48ffc85ce5
commit 2de7c0aa36
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -76,6 +76,8 @@ public class Network {
/** /**
* Return all edges of the {@link Network}, indexed by the {@link OpenPgpFingerprint fingerprint} of the issuer. * Return all edges of the {@link Network}, indexed by the {@link OpenPgpFingerprint fingerprint} of the issuer.
* An edge consists of a {@link CertificationSet} containing all signatures made by the issuer on the target. * An edge consists of a {@link CertificationSet} containing all signatures made by the issuer on the target.
* TODO: Do we care about immutability, or can we ignore that issue since Network is only used by
* WebOfTrust anyways?
* *
* @return map of edges * @return map of edges
*/ */
@ -85,6 +87,8 @@ public class Network {
/** /**
* Return all reversed edges of the {@link Network}, indexed by the {@link OpenPgpFingerprint fingerprint} of the target. * Return all reversed edges of the {@link Network}, indexed by the {@link OpenPgpFingerprint fingerprint} of the target.
* TODO: Do we care about immutability, or can we ignore that issue since Network is only used by
* WebOfTrust anyways?
* *
* @return map of reversed edges * @return map of reversed edges
*/ */