This commit is contained in:
krakjoe 2013-11-30 00:44:34 +00:00
parent b03f1fdb3e
commit 16edd155cb
2 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -74,12 +74,12 @@ public class DebugSocket implements Runnable {
}
if (reader) {
/* The reader thread part will wait() until there is input */
/* The reader thread will wait() until there is input */
Socket socket = new Socket(this.host, this.port);
String command;
OutputStream output = socket.getOutputStream();
do {
String command;
OutputStream output = socket.getOutputStream();
synchronized(this) {
wait();