File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/intellij/plugins/bodhi/pmd Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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.
1010pluginSinceBuild = 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
1717platformType = IC
18- platformVersion = 2024.1
18+ platformVersion = 2024.2
1919platformDownloadSources = true
2020
2121# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments