mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IJPL-218803 IJ-MR-179029 IJ-MR-175479 IJ-MR-184126 don't export execution from lang to avoid excessive and incorrect deps on debugger
GitOrigin-RevId: f27713c975606c010f230539bc7ffe7f9c6c815c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e56b96858e
commit
9102a339c5
@@ -36,6 +36,8 @@ jvm_library(
|
||||
"//platform/threadDumpParser",
|
||||
"//platform/code-style-impl:codeStyle-impl",
|
||||
"@lib//:kotlinx-serialization-core",
|
||||
"//platform/execution",
|
||||
"//platform/lang-api:lang",
|
||||
],
|
||||
exports = [
|
||||
"//java/java-frontback-psi-api:frontback-psi",
|
||||
|
||||
@@ -52,5 +52,7 @@
|
||||
<orderEntry type="module" module-name="intellij.platform.threadDumpParser" />
|
||||
<orderEntry type="module" module-name="intellij.platform.codeStyle.impl" />
|
||||
<orderEntry type="library" name="kotlinx-serialization-core" level="project" />
|
||||
<orderEntry type="module" module-name="intellij.platform.execution" />
|
||||
<orderEntry type="module" module-name="intellij.platform.lang" />
|
||||
</component>
|
||||
</module>
|
||||
+2
-2
@@ -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-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.codeInsight.editorActions.wordSelection;
|
||||
|
||||
import com.intellij.codeInsight.editorActions.ExtendWordSelectionHandlerBase;
|
||||
@@ -16,7 +16,7 @@ import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public final class AntLikePropertySelectionHandler extends ExtendWordSelectionHandlerBase {
|
||||
final class AntLikePropertySelectionHandler extends ExtendWordSelectionHandlerBase {
|
||||
@Override
|
||||
public List<TextRange> select(@NotNull PsiElement e, @NotNull CharSequence editorText, int cursorOffset, @NotNull Editor editor) {
|
||||
TextRange range = e.getTextRange();
|
||||
|
||||
Reference in New Issue
Block a user