Skip to content

Commit 90a58d3

Browse files
committed
2025.1 EAP
1 parent 092f5c1 commit 90a58d3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#
2020

2121
# suppress inspection "UnusedProperty" for whole file
22-
ideaVersionName = 2024.3
22+
ideaVersionName = 2025.1
2323

2424
coreVersion = 1.8.2
2525

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ fuel = "2.3.1"
88
licenser = "0.6.1"
99
changelog = "2.2.0"
1010
intellij-plugin = "2.1.0"
11-
intellij-ide = "243.21155.17-EAP-SNAPSHOT"
11+
intellij-ide = "251.14649-EAP-CANDIDATE-SNAPSHOT"
1212
idea-ext = "1.1.8"
13-
psiPlugin = "243.7768"
13+
psiPlugin = "251.175"
1414

1515
[plugins]
1616
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
@@ -39,7 +39,7 @@ jflex-skeleton = "org.jetbrains.idea:jflex:1.7.0-c1fdf11"
3939
grammarKit = "org.jetbrains.idea:grammar-kit:1.5.1"
4040

4141
# Gradle Tooling
42-
gradleToolingExtension = "com.jetbrains.intellij.gradle:gradle-tooling-extension:243-EAP-SNAPSHOT"
42+
gradleToolingExtension = { module = "com.jetbrains.intellij.gradle:gradle-tooling-extension", version.ref = "intellij-ide" }
4343
annotations = "org.jetbrains:annotations:24.0.0"
4444
groovy = "org.codehaus.groovy:groovy:3.0.19"
4545

src/main/kotlin/platform/mixin/util/AsmUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ val ClassNode.shortName
177177
get() = internalNameToShortName(name)
178178

179179
private val LOAD_CLASS_FILE_BYTES: Method? = runCatching {
180-
com.intellij.byteCodeViewer.ByteCodeViewerManager::class.java
180+
com.intellij.byteCodeViewer.BytecodeViewerManager::class.java
181181
.getDeclaredMethod("loadClassFileBytes", PsiClass::class.java)
182182
.let { it.isAccessible = true; it }
183183
}.getOrNull()

0 commit comments

Comments
 (0)