🔥 Remove fixed FIXMEs
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 6 Sep 2024 11:59:47 +0000 (13:59 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Fri, 6 Sep 2024 11:59:47 +0000 (13:59 +0200)
Fuck the person who added FIXMEs in the source code and didn’t bother to
actually fix the issues.

It’s me. I was the one who did that.

src/main/java/net/pterodactylus/fcp/highlevel/FcpClient.java

index 8f35393..55d7d08 100644 (file)
@@ -599,7 +599,7 @@ public class FcpClient implements Closeable {
         *             if an FCP error occurs
         */
        public void addPeer(URL url, Trust trust, Visibility visibility) throws IOException, FcpException {
-               addPeer(new AddPeer(trust, visibility, url)); // FIXME â€“ add parameters
+               addPeer(new AddPeer(trust, visibility, url));
        }
 
        /**
@@ -615,7 +615,7 @@ public class FcpClient implements Closeable {
         *             if an FCP error occurs
         */
        public void addPeer(String file, Trust trust, Visibility visibility) throws IOException, FcpException {
-               addPeer(new AddPeer(trust, visibility, file)); // FIXME â€“ add parameters
+               addPeer(new AddPeer(trust, visibility, file));
        }
 
        /**