Skip to content

Commit 55be497

Browse files
authored
Merge pull request #179 from martenbohlin/intellij-v2024.2-support
Allow installation on IntelliJ 2024.2.x
2 parents 9e8713a + 44ee654 commit 55be497

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ pluginVersion = 2.0.1
88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.
1010
pluginSinceBuild = 241
11-
pluginUntilBuild = 241.*
11+
pluginUntilBuild = 242.*
1212

1313
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1414
# See https://jb.gg/intellij-platform-builds-list for available build versions.
15-
pluginVerifierIdeVersions = 2024.1
15+
pluginVerifierIdeVersions = 2024.2
1616

1717
platformType = IC
18-
platformVersion = 2024.1
18+
platformVersion = 2024.2
1919
platformDownloadSources = true
2020

2121
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html

src/main/java/com/intellij/plugins/bodhi/pmd/PMDProjectComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ void updateCustomRulesMenu() {
121121
PMDCustom actionGroup = (PMDCustom) ActionManager.getInstance().getAction("PMDCustom");
122122
if (numProjectsOpen.get() != 1) {
123123
// merge actions from menu and from settings to not lose any when switching between projects
124-
AnAction[] currentActions = actionGroup.getChildren(null);
124+
AnAction[] currentActions = actionGroup.getChildren((ActionManager)null);
125125
Set<String> ruleSetPathsFromMenu = new LinkedHashSet<>();
126126
for (AnAction action : currentActions) {
127127
if (action.getSynonyms().size() == 1) {

0 commit comments

Comments
 (0)