mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
cleanup inline field
GitOrigin-RevId: 84112d07b2709555a1e7d55e181e8ba032b0220a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
2885dbfd15
commit
e9049d74a8
@@ -62,7 +62,6 @@ public class SchemaTypeInheritanceIndex extends XmlIndex<Set<SchemaTypeInfo>> {
|
||||
private static class MyWorker implements BiFunction<String, String, List<Set<SchemaTypeInfo>>> {
|
||||
private final Project myProject;
|
||||
private final VirtualFile myCurrentFile;
|
||||
private final GlobalSearchScope myFilter;
|
||||
private final boolean myShouldParseCurrent;
|
||||
private MultiMap<SchemaTypeInfo,SchemaTypeInfo> myMap;
|
||||
|
||||
@@ -70,8 +69,8 @@ public class SchemaTypeInheritanceIndex extends XmlIndex<Set<SchemaTypeInfo>> {
|
||||
myCurrentFile = currentFile;
|
||||
myProject = project;
|
||||
|
||||
myFilter = createFilter(project);
|
||||
myShouldParseCurrent = (myCurrentFile != null && ! myFilter.contains(myCurrentFile));
|
||||
GlobalSearchScope filter = createFilter(project);
|
||||
myShouldParseCurrent = (myCurrentFile != null && ! filter.contains(myCurrentFile));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user