jshell: run cleanups on the client thread

This commit is contained in:
Max Weber
2021-07-18 21:31:06 -06:00
committed by Abex
parent 48c6434e6d
commit de8940b8b9
@@ -419,7 +419,12 @@ public abstract class ShellPanel extends JPanel
private void cleanup()
{
for (var c : cleanup)
var todo = new ArrayList<>(cleanup);
cleanup.clear();
invokeOnClientThread(() ->
{
for (var c : todo)
{
try
{
@@ -430,7 +435,7 @@ public abstract class ShellPanel extends JPanel
shellLogger.error("Cleanup threw:", e);
}
}
cleanup.clear();
});
}
protected abstract void invokeOnClientThread(Runnable r);