From 9c742021ffb2667e7dc90c7fbf94f97d57e6ac5a Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 8 Apr 2011 15:10:45 +0200 Subject: [PATCH] =?utf8?q?Remove=20=E2=80=9Ccore=E2=80=9D=20field.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java | 4 ---- 1 file changed, 4 deletions(-) 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)); } -- 2.7.4