fixing issues with threading, stop button, and defaults not being called

This commit is contained in:
benfry
2005-04-06 06:20:07 +00:00
parent 7fb4324265
commit 4fa2d3e9f7
6 changed files with 43 additions and 19 deletions

View File

@@ -52,8 +52,11 @@ class PdeMessageSiphon implements Runnable {
String currentLine;
while ((currentLine = streamReader.readLine()) != null) {
// \n is added again because readLine() strips it out
//PdeEditorConsole.systemOut.println("messaging in");
consumer.message(currentLine + "\n");
//PdeEditorConsole.systemOut.println("messaging out");
}
//PdeEditorConsole.systemOut.println("messaging thread done");
thread = null;
} catch (NullPointerException npe) {