mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Fix Already disposed IDEA-76765
This commit is contained in:
@@ -144,6 +144,9 @@ public abstract class ExecutableValidator {
|
||||
* @return true if executable was valid, false - if not valid (and notification was shown in that case).
|
||||
*/
|
||||
public boolean checkExecutableAndNotifyIfNeeded() {
|
||||
if (myProject.isDisposed()) {
|
||||
return false;
|
||||
}
|
||||
if (!isExecutableValid(getCurrentExecutable())) {
|
||||
showExecutableNotConfiguredNotification();
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user