Fix invoke later for disposed project
EA-44383 - assert: ComponentManagerImpl.getComponent
This commit is contained in:
+3
-1
@@ -255,7 +255,9 @@ public class UnsupportedAbiVersionNotificationPanelProvider extends EditorNotifi
|
|||||||
ApplicationManager.getApplication().invokeLater(new Runnable() {
|
ApplicationManager.getApplication().invokeLater(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
EditorNotifications.getInstance(project).updateAllNotifications();
|
if (!project.isDisposed()) {
|
||||||
|
EditorNotifications.getInstance(project).updateAllNotifications();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user