File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/com/magento/idea/magento2plugin/stubs/indexes/xml Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2020import com .intellij .util .xml .impl .DomApplicationComponent ;
2121import com .magento .idea .magento2plugin .magento .files .ModuleMenuXml ;
2222import com .magento .idea .magento2plugin .project .Settings ;
23+ import gnu .trove .THashMap ;
2324import java .util .Map ;
24- import java .util .concurrent .ConcurrentHashMap ;
2525import org .jetbrains .annotations .NotNull ;
2626import org .jetbrains .annotations .Nullable ;
2727
@@ -34,7 +34,7 @@ public class MenuIndex extends ScalarIndexExtension<String> {
3434 @ Override
3535 public DataIndexer <String , Void , FileContent > getIndexer () {
3636 return inputData -> {
37- final ConcurrentHashMap <String , Void > map = new ConcurrentHashMap <>();
37+ final Map <String , Void > map = new THashMap <>();//NOPMD
3838 final PsiFile psiFile = inputData .getPsiFile ();
3939 if (!Settings .isEnabled (psiFile .getProject ())) {
4040 return map ;
You can’t perform that action at this time.
0 commit comments