IJPL-326 remove getCoroutineScope

GitOrigin-RevId: 071d852d71a7b6a6e5a24088a9bd987fe487f407
This commit is contained in:
Vladimir Krivosheev
2024-01-23 07:57:46 +01:00
committed by intellij-monorepo-bot
parent 9e4a8d4ef6
commit a920a363f7
86 changed files with 320 additions and 308 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compiler.impl;
import com.intellij.codeInsight.daemon.impl.actions.SuppressFix;
@@ -40,7 +40,7 @@ public final class CompilerErrorTreeView extends NewErrorTreeViewPanel {
@Override
protected void addExtraPopupMenuActions(@NotNull DefaultActionGroup group) {
group.addSeparator();
group.add(new ExcludeFromCompileAction(myProject) {
group.add(new ExcludeFromCompileAction(project) {
@Override
protected @Nullable VirtualFile getFile() {
return getSelectedFile();
@@ -58,7 +58,7 @@ public final class CompilerErrorTreeView extends NewErrorTreeViewPanel {
@Override
protected boolean shouldShowFirstErrorInEditor() {
return CompilerWorkspaceConfiguration.getInstance(myProject).AUTO_SHOW_ERRORS_IN_EDITOR;
return CompilerWorkspaceConfiguration.getInstance(project).AUTO_SHOW_ERRORS_IN_EDITOR;
}
@Override

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.compiler.impl;
import com.intellij.ide.errorTreeView.NewErrorTreeViewPanel;
@@ -26,7 +26,7 @@ public final class ProblemsViewPanel extends NewErrorTreeViewPanel {
@Override
protected void addExtraPopupMenuActions(DefaultActionGroup group) {
group.add(new ExcludeFromCompileAction(myProject) {
group.add(new ExcludeFromCompileAction(project) {
@Override
protected @Nullable VirtualFile getFile() {
return getSelectedFile();