Skip to content

Commit ef07212

Browse files
committed
Review fixes
1 parent 1bb2cd6 commit ef07212

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

base/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ intellij_plugin_library(
6262
"src/META-INF/blaze-base.xml",
6363
] + select_for_plugin_api({
6464
"intellij-2024.3": ["src/META-INF/blaze-base-243.xml"],
65+
"intellij-2025.1": ["src/META-INF/blaze-base-251.xml"],
6566
"intellij-ue-2024.3": ["src/META-INF/blaze-base-243.xml"],
67+
"intellij-ue-2025.1": ["src/META-INF/blaze-base-251.xml"],
6668
"clion-2024.3": ["src/META-INF/blaze-base-243.xml"],
69+
"clion-2025.1": ["src/META-INF/blaze-base-251.xml"],
6770
"default": [],
6871
}),
6972
visibility = PLUGIN_PACKAGES_VISIBILITY,
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
~ Copyright 2024 The Bazel Authors. All rights reserved.
3+
~
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
15+
-->
16+
<idea-plugin>
17+
<extensions defaultExtensionNs="com.intellij">
18+
<daemon.essentialHighlightingRestarterDisablement implementation="com.google.idea.blaze.base.qsync.analysis.QuerySyncEssentialHighlightingRestarterDisablement"/>
19+
</extensions>
20+
</idea-plugin>

sdkcompat/v242/com/google/idea/sdkcompat/querysync/EssentialHighlightingRestarterDisablementAdapter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.intellij.openapi.project.Project;
44
import org.jetbrains.annotations.NotNull;
55

6+
// #api242
67
public interface EssentialHighlightingRestarterDisablementAdapter {
78

89
public boolean shouldBeDisabledForProject(@NotNull Project project);

sdkcompat/v243/com/google/idea/sdkcompat/querysync/EssentialHighlightingRestarterDisablementAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
import com.intellij.codeInsight.daemon.EssentialHighlightingRestarterDisablement;
44

5-
// #api243
5+
// #api242
66
public interface EssentialHighlightingRestarterDisablementAdapter extends EssentialHighlightingRestarterDisablement {
77
}

sdkcompat/v251/com/google/idea/sdkcompat/querysync/EssentialHighlightingRestarterDisablementAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
import com.intellij.codeInsight.daemon.EssentialHighlightingRestarterDisablement;
44

5-
// #api243
5+
// #api242
66
public interface EssentialHighlightingRestarterDisablementAdapter extends EssentialHighlightingRestarterDisablement {
77
}

0 commit comments

Comments
 (0)