X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FFcpConnection.java;h=cc13d4a6aac5a3d8214b68a724ddff1abcf8e982;hb=23a08a2bd81e2742deb59fca70f6fe7d3a517cfc;hp=858b783b305517c9526eec51b943987ea6e75b0f;hpb=b171126719c983b590c51f22eb60a3e0afdf1fb9;p=jFCPlib.git diff --git a/src/main/java/net/pterodactylus/fcp/FcpConnection.java b/src/main/java/net/pterodactylus/fcp/FcpConnection.java index 858b783..cc13d4a 100644 --- a/src/main/java/net/pterodactylus/fcp/FcpConnection.java +++ b/src/main/java/net/pterodactylus/fcp/FcpConnection.java @@ -31,8 +31,6 @@ import java.util.HashMap; import java.util.Map; import java.util.logging.Logger; -import net.pterodactylus.util.logging.Logging; - /** * An FCP connection to a Freenet node. * @@ -41,7 +39,7 @@ import net.pterodactylus.util.logging.Logging; public class FcpConnection implements Closeable { /** Logger. */ - private static final Logger logger = Logging.getLogger(FcpConnection.class.getName()); + private static final Logger logger = Logger.getLogger(FcpConnection.class.getName()); /** The default port for FCP v2. */ public static final int DEFAULT_PORT = 9481; @@ -134,6 +132,10 @@ public class FcpConnection implements Closeable { this.port = port; } + public synchronized boolean isClosed() { + return connectionHandler == null; + } + // // LISTENER MANAGEMENT //