GP-0: Fix tests. Also fixed some ignored stack traces.

This commit is contained in:
Dan 2023-01-10 11:43:57 -05:00
parent 1a36ad806e
commit a66412f026
2 changed files with 7 additions and 3 deletions

View file

@ -915,6 +915,9 @@ public class DebuggerListingProvider extends CodeViewerProvider {
}
protected void cleanMissingModuleMessages(Set<Trace> affectedTraces) {
if (consoleService == null) {
return;
}
nextCtx: for (ActionContext ctx : consoleService.getActionContexts()) {
if (!(ctx instanceof DebuggerMissingModuleActionContext mmCtx)) {
continue;