mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
IDEA-121126 Debugger: mute breakpoints: Throwable at ApplicationImpl.assertReadAccessAllowed()
This commit is contained in:
@@ -757,7 +757,12 @@ public class BreakpointManager {
|
||||
if (myBreakpointsListForIteration == null) {
|
||||
myBreakpointsListForIteration = new ArrayList<Breakpoint>(myBreakpoints.size());
|
||||
|
||||
for (XBreakpoint<?> xBreakpoint : getXBreakpointManager().getAllBreakpoints()) {
|
||||
XBreakpoint<?>[] xBreakpoints = ApplicationManager.getApplication().runReadAction(new Computable<XBreakpoint<?>[]>() {
|
||||
public XBreakpoint<?>[] compute() {
|
||||
return getXBreakpointManager().getAllBreakpoints();
|
||||
}
|
||||
});
|
||||
for (XBreakpoint<?> xBreakpoint : xBreakpoints) {
|
||||
if (isJavaType(xBreakpoint)) {
|
||||
Breakpoint breakpoint = myBreakpoints.get(xBreakpoint);
|
||||
if (breakpoint == null) {
|
||||
|
||||
Reference in New Issue
Block a user