cleanup inline field

GitOrigin-RevId: 84112d07b2709555a1e7d55e181e8ba032b0220a
This commit is contained in:
Dmitry Batkovich
2019-08-06 11:14:12 +03:00
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