Skip to content

Commit

Permalink
Bump 2022.1 EAP to 221.4906.8
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelLipski committed Mar 4, 2022
1 parent c69a9cc commit 954741d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id 'com.diffplug.spotless' version '6.3.0' apply false
id 'io.freefair.lombok' version '6.4.1' apply false
id 'org.ajoberstar.grgit' version '5.0.0' apply false
id 'org.checkerframework' version '0.6.8' apply false
id 'org.checkerframework' version '0.6.9' apply false
id 'org.jetbrains.grammarkit' version '2021.2.1' apply false
id 'org.jetbrains.intellij' version '1.4.0' apply false
// Minor Kotlin version is effectively enforced by the IntelliJ version we're building against,
Expand All @@ -23,9 +23,9 @@ ext {
kotlinVersion = '1.5.10'
scalaMajorVersion = '2.13'

archUnitVersion = '0.22.0'
archUnitVersion = '0.23.1'
betterStringsVersion = '0.5'
checkerFrameworkVersion = '3.21.2'
checkerFrameworkVersion = '3.21.3'
checkstyleToolVersion = '8.33'
commonsIOVersion = '2.11.0'
ideProbeVersion = '0.23.0'
Expand Down Expand Up @@ -54,7 +54,7 @@ ext {
// but for some reason aren't resolved in UI tests.
// Generally, see https://www.jetbrains.com/intellij-repository/snapshots/ -> Ctrl+F .idea
// Use `null` if the latest supported major has a stable release (and not just EAPs).
eapOfLatestSupportedMajor: '221.4501.155-EAP-SNAPSHOT'
eapOfLatestSupportedMajor: '221.4906.8-EAP-SNAPSHOT'
]

intellijVersions.latestSupportedMajor = intellijVersions.eapOfLatestSupportedMajor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public boolean apply(JavaMethodCall input) {
AccessTarget.MethodCallTarget target = input.getTarget(); // where is the method declared?

if (origin.getName().equals("onUpdate") && target.getName().equals("onUpdate")) {
return target.getOwner().equals(origin.getOwner().getSuperClass().orNull());
return target.getOwner().equals(origin.getOwner().getSuperclass().orElse(null));
}
return false;
}
Expand Down

0 comments on commit 954741d

Please sign in to comment.