X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Ffcp%2FFcpInterface.java;h=8da41ed73b58c0a9bc3f7eebf5aadf15c913985c;hb=82ad9f2d7d1731ddcaef241ad94db3a38c92b718;hp=de8718feb0c474bbb502af9894b948052fb0302b;hpb=35aeb7dde28426cb1b22c91d90444d95c22d4edc;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java b/src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java index de8718f..8da41ed 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java +++ b/src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java @@ -38,9 +38,6 @@ import freenet.support.api.Bucket; */ public class FcpInterface { - /** The core. */ - private final Core core; - /** All available FCP commands. */ private final Map commands = Collections.synchronizedMap(new HashMap()); @@ -51,7 +48,6 @@ public class FcpInterface { * The core */ public FcpInterface(Core core) { - this.core = core; commands.put("Version", new VersionCommand()); commands.put("GetPostFeed", new GetPostFeedCommand(core)); }