mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
IJPL-326 remove getCoroutineScope
GitOrigin-RevId: 071d852d71a7b6a6e5a24088a9bd987fe487f407
This commit is contained in:
committed by
intellij-monorepo-bot
parent
9e4a8d4ef6
commit
a920a363f7
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user