From: David ‘Bombe’ Roden Date: Fri, 10 Jul 2015 12:38:40 +0000 (+0200) Subject: Throw an exception on EOF! X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=24c7c279c67bd5fe34bfef81e1ab936d7b555b3a;p=jFCPlib.git Throw an exception on EOF! --- diff --git a/src/main/java/net/pterodactylus/fcp/FcpConnectionHandler.java b/src/main/java/net/pterodactylus/fcp/FcpConnectionHandler.java index ad3e3f3..256efef 100644 --- a/src/main/java/net/pterodactylus/fcp/FcpConnectionHandler.java +++ b/src/main/java/net/pterodactylus/fcp/FcpConnectionHandler.java @@ -18,6 +18,7 @@ package net.pterodactylus.fcp; +import java.io.EOFException; import java.io.IOException; import java.io.InputStream; import java.nio.ByteBuffer; @@ -78,6 +79,7 @@ class FcpConnectionHandler implements Runnable { String line = readLine(); logger.log(Level.FINEST, String.format("read line: %1$s", line)); if (line == null) { + throwable = new EOFException(); break; } if (line.length() == 0) {