mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
cleanup
GitOrigin-RevId: 7286a4dbad199a34cef030e10214e7c7b7979335
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0488036009
commit
fcf2945e4e
@@ -5,7 +5,6 @@ import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
final class CompactVirtualFileSetFactory implements VirtualFileSetFactory {
|
||||
@Override
|
||||
public @NotNull VirtualFileSet createCompactVirtualFileSet() {
|
||||
|
||||
@@ -1082,17 +1082,7 @@ public final class DaemonCodeAnalyzerImpl extends DaemonCodeAnalyzerEx
|
||||
boolean includeFixRange,
|
||||
boolean highestPriorityOnly,
|
||||
@NotNull HighlightSeverity minSeverity) {
|
||||
return findHighlightsByOffset(document, offset, includeFixRange, highestPriorityOnly, minSeverity, true);
|
||||
}
|
||||
|
||||
@ApiStatus.Internal
|
||||
public @Nullable HighlightInfo findHighlightsByOffset(@NotNull Document document,
|
||||
int offset,
|
||||
boolean includeFixRange,
|
||||
boolean highestPriorityOnly,
|
||||
@NotNull HighlightSeverity minSeverity,
|
||||
boolean includeFileLevel) {
|
||||
return findHighlightsByOffset(document, offset, includeFixRange, highestPriorityOnly, minSeverity, includeFileLevel,
|
||||
return findHighlightsByOffset(document, offset, includeFixRange, highestPriorityOnly, minSeverity, true,
|
||||
CodeInsightContexts.anyContext());
|
||||
}
|
||||
|
||||
@@ -1490,7 +1480,7 @@ public final class DaemonCodeAnalyzerImpl extends DaemonCodeAnalyzerEx
|
||||
int @NotNull [] passesToIgnore,
|
||||
@NotNull DaemonProgressIndicator progress,
|
||||
@NotNull HighlightingSessionImpl session,
|
||||
@NotNull Map<Pair<Document, Class<? extends ProgressableTextEditorHighlightingPass>>, ProgressableTextEditorHighlightingPass> mainDocumentPasses) {
|
||||
@NotNull Map<? super Pair<Document, Class<? extends ProgressableTextEditorHighlightingPass>>, ProgressableTextEditorHighlightingPass> mainDocumentPasses) {
|
||||
ApplicationManager.getApplication().assertIsNonDispatchThread();
|
||||
try {
|
||||
ProgressManager.getInstance().executeProcessUnderProgress(Context.current().wrap(() -> {
|
||||
|
||||
@@ -96,7 +96,6 @@ import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static com.intellij.application.options.OptionId.PROJECT_VIEW_SHOW_VISIBILITY_ICONS;
|
||||
import static com.intellij.ui.treeStructure.Tree.AUTO_SCROLL_FROM_SOURCE_BLOCKED;
|
||||
|
||||
Reference in New Issue
Block a user