Skip to content

Commit a374bca

Browse files
committed
fix: build against 2023.1 for constructor compatibility (#823)
Signed-off-by: Andre Dietisheim <[email protected]>
1 parent 5eea7ff commit a374bca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jetBrainsChannel=stable
55
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
66
# if plugin uses intellij-common-ui-test library, 'platformType' and 'platformVersion' variables names MUST be used
77
# platformType = IC (not needed as hard-coded in gradle build directly)
8-
platformVersion=2024.3
8+
platformVersion=2023.1
99

1010
# Gradle Releases -> https://github.com/gradle/gradle/releases
1111
gradleVersion=8.5

src/main/kotlin/com/redhat/devtools/intellij/kubernetes/editor/ResourceDiff.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ open class ResourceDiff(private val project: Project) {
5252
}
5353
}
5454

55-
private fun createDiffRequestChain(file: VirtualFile, toCompare: String): MutableDiffRequestChain? {
55+
private fun createDiffRequestChain(file: VirtualFile, toCompare: String): MutableDiffRequestChain {
5656
val contentFactory = DiffContentFactory.getInstance()
5757
val left = contentFactory.create(project, file)
5858
val right = contentFactory.create(project, toCompare, file.fileType)

0 commit comments

Comments
 (0)