mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
EA-22466 - INRE: FileBasedIndex.handleDumbMode
This commit is contained in:
+8
-1
@@ -16,7 +16,9 @@
|
||||
package org.intellij.plugins.intelliLang.inject.config;
|
||||
|
||||
import com.intellij.openapi.module.Module;
|
||||
import com.intellij.openapi.project.IndexNotReadyException;
|
||||
import com.intellij.psi.impl.source.jsp.JspManager;
|
||||
import com.intellij.util.ArrayUtil;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
@@ -26,6 +28,11 @@ public class JspSupportProxyImpl extends JspSupportProxy {
|
||||
@NotNull
|
||||
@Override
|
||||
public String[] getPossibleTldUris(Module module) {
|
||||
return JspManager.getInstance(module.getProject()).getPossibleTldUris(module);
|
||||
try {
|
||||
return JspManager.getInstance(module.getProject()).getPossibleTldUris(module);
|
||||
}
|
||||
catch (IndexNotReadyException e) {
|
||||
return ArrayUtil.EMPTY_STRING_ARRAY;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user