[bisq-network/bisq] Persistence redesign (#4589)

chimp1984 notifications at github.com
Sun Oct 4 18:06:58 UTC 2020


@chimp1984 commented on this pull request.



> +    }
+
+    public void setAll(Collection<T> collection) {
+        this.list.clear();
+        this.list.addAll(collection);
+    }
+
+    public boolean add(T item) {
+        if (!list.contains(item)) {
+            list.add(item);
+            return true;
+        }
+        return false;
+    }
+
+    public boolean remove(T tradable) {

Yes, will fix

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/pull/4589#discussion_r499272794
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20201004/21d4c6cb/attachment.html>


More information about the bisq-github mailing list