mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
fix exception (report 304969)
This commit is contained in:
+1
-1
@@ -48,7 +48,7 @@ public final class GotoModuleDirectory extends FileChooserAction {
|
||||
if (module == null) {
|
||||
module = e.getData(LangDataKeys.MODULE);
|
||||
}
|
||||
if (module == null) {
|
||||
if (module == null || module.isDisposed()) {
|
||||
return null;
|
||||
}
|
||||
final VirtualFile moduleFile = validated(module.getModuleFile());
|
||||
|
||||
Reference in New Issue
Block a user