Skip to content

Commit

Permalink
Allow installation on IntelliJ 2024.2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
martenbohlin committed Sep 7, 2024
1 parent 9e8713a commit 44ee654
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ pluginVersion = 2.0.1
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 241
pluginUntilBuild = 241.*
pluginUntilBuild = 242.*

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

platformType = IC
platformVersion = 2024.1
platformVersion = 2024.2
platformDownloadSources = true

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void updateCustomRulesMenu() {
PMDCustom actionGroup = (PMDCustom) ActionManager.getInstance().getAction("PMDCustom");
if (numProjectsOpen.get() != 1) {
// merge actions from menu and from settings to not lose any when switching between projects
AnAction[] currentActions = actionGroup.getChildren(null);
AnAction[] currentActions = actionGroup.getChildren((ActionManager)null);
Set<String> ruleSetPathsFromMenu = new LinkedHashSet<>();
for (AnAction action : currentActions) {
if (action.getSynonyms().size() == 1) {
Expand Down

0 comments on commit 44ee654

Please sign in to comment.