Remove “core” field.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 8 Apr 2011 13:10:45 +0000 (15:10 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 8 Apr 2011 13:10:45 +0000 (15:10 +0200)
src/main/java/net/pterodactylus/sone/freenet/fcp/FcpInterface.java

index de8718f..8da41ed 100644 (file)
@@ -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<String, Command> commands = Collections.synchronizedMap(new HashMap<String, Command>());
 
@@ -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));
        }