From: David ‘Bombe’ Roden Date: Fri, 8 Apr 2011 13:10:45 +0000 (+0200) Subject: Remove “core” field. X-Git-Tag: 0.6.5^2~39^2~46 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=9c742021ffb2667e7dc90c7fbf94f97d57e6ac5a Remove “core” field. --- 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)); }