mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
exc fixed: Throwable: FileManagerImpl.dispatchPendingEvents
This commit is contained in:
+1
-1
@@ -200,7 +200,7 @@ public class XLineBreakpointManager {
|
||||
if (line >= 0 && line < document.getLineCount() && file != null) {
|
||||
ApplicationManager.getApplication().invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
if (!myProject.isDisposed() && file.isValid()) {
|
||||
if (!myProject.isDisposed() && myProject.isInitialized() && file.isValid()) {
|
||||
XDebuggerUtil.getInstance().toggleLineBreakpoint(myProject, file, line);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user