From 3ef9769cede04873ed7ffaabdf495895bbf080bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Tue, 16 Feb 2016 07:25:31 +0100 Subject: [PATCH] Remove unused methods --- .../jsite/application/Freenet7Interface.java | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/src/main/java/de/todesbaum/jsite/application/Freenet7Interface.java b/src/main/java/de/todesbaum/jsite/application/Freenet7Interface.java index 657adfe..dae72fb 100644 --- a/src/main/java/de/todesbaum/jsite/application/Freenet7Interface.java +++ b/src/main/java/de/todesbaum/jsite/application/Freenet7Interface.java @@ -46,31 +46,6 @@ public class Freenet7Interface { private Connection connection; /** - * Sets the hostname of the node. The default port for FCP2 connections ({@link Node#DEFAULT_PORT}) - * is used. - * - * @param hostname - * The hostname of the node - */ - public void setNodeAddress(String hostname) { - node = new Node(hostname); - connection = new Connection(node, "jSite-" + number + "-connection-" + counter++); - } - - /** - * Sets the hostname and the port of the node. - * - * @param hostname - * The hostname of the node - * @param port - * The port number of the node - */ - public void setNodeAddress(String hostname, int port) { - node = new Node(hostname, port); - connection = new Connection(node, "jSite-" + number + "-connection-" + counter++); - } - - /** * Sets hostname and port from the given node. * * @param node @@ -87,14 +62,6 @@ public class Freenet7Interface { } /** - * Removes the current node from the interface. - */ - public void removeNode() { - node = null; - connection = null; - } - - /** * Returns the node this interface is connecting to. * * @return The node -- 2.7.4