mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
EA-29343 fix already disposed
This commit is contained in:
@@ -126,7 +126,7 @@ public class AndroidAptCompiler implements SourceGeneratingCompiler {
|
||||
if (aptItem.myGeneratedFile.exists()) {
|
||||
ApplicationManager.getApplication().runReadAction(new Runnable() {
|
||||
public void run() {
|
||||
if (context.getProject().isDisposed()) {
|
||||
if (context.getProject().isDisposed() || aptItem.myModule.isDisposed()) {
|
||||
return;
|
||||
}
|
||||
String className = FileUtil.getNameWithoutExtension(aptItem.myGeneratedFile);
|
||||
|
||||
Reference in New Issue
Block a user