Skip to content
Snippets Groups Projects
Commit d9fc2e21 authored by Mick Jordan's avatar Mick Jordan
Browse files

fix NPE in rrepl

parent 42c48368
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,9 @@ public final class RREPLServer extends REPLServer {
try {
// Cheat with synchrony: call client directly about entering a nested debugging
// context.
client.halted(message);
if (client != null) {
client.halted(message);
}
} finally {
// Returns when "continue" is called in the new debugging context
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment