From 3a994625e929e284eb14b5b7ebf268348d17da27 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Sun, 25 Jun 2023 13:04:25 +0200 Subject: [PATCH] Add todos --- .../src/main/java/org/pgpainless/wot/dijkstra/sq/Network.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wot-dijkstra/src/main/java/org/pgpainless/wot/dijkstra/sq/Network.java b/wot-dijkstra/src/main/java/org/pgpainless/wot/dijkstra/sq/Network.java index c35e69b1..6596c5dd 100644 --- a/wot-dijkstra/src/main/java/org/pgpainless/wot/dijkstra/sq/Network.java +++ b/wot-dijkstra/src/main/java/org/pgpainless/wot/dijkstra/sq/Network.java @@ -76,6 +76,8 @@ public class Network { /** * 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. + * TODO: Do we care about immutability, or can we ignore that issue since Network is only used by + * WebOfTrust anyways? * * @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. + * 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 */