mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 01:50:44 +01:00
fixing issues with threading, stop button, and defaults not being called
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user