GP-0: Fixed debugger model testing under gradle

This commit is contained in:
Dan 2021-04-23 13:56:10 -04:00
parent a9a6ecd56c
commit 6cfb32a6a3

View file

@ -56,6 +56,10 @@ public class DebuggerConsole extends Thread implements DebuggerModelListener, Au
try {
while (!closed) {
String line = reader.readLine();
if (line == null) {
// NB. EOF happens immediately under Gradle
return;
}
if (interpreter == null) {
System.err.println("Have not found interpreter, yet");
continue;