Commit 86622599 authored by Egor.Ushakov's avatar Egor.Ushakov
Browse files

IDEA-127125 Throwable at com.intellij.debugger.ui.breakpoints.BreakpointWithHighlighter.reload

parent 7c0fcae4
Showing with 6 additions and 1 deletion
+6 -1
......@@ -177,7 +177,12 @@ public abstract class BreakpointWithHighlighter<P extends JavaBreakpointProperti
protected BreakpointWithHighlighter(@NotNull Project project, XBreakpoint xBreakpoint) {
//for persistency
super(project, xBreakpoint);
reload();
ApplicationManager.getApplication().runReadAction(new Runnable() {
@Override
public void run() {
reload();
}
});
}
@Override
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment