Skip to content

Commit 7c70449

Browse files
committed
Fix build
1 parent ba8e001 commit 7c70449

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

components/ide/jetbrains/backend-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ tasks {
177177

178178
tasks.register("runPluginVerifier") {
179179
if (properties("platformType") == "RD") {
180-
intellijPlatform.verifyPlugin.ides.ide(IntelliJPlatformType.Rider, properties("pluginVerifierIdeVersions"))
180+
intellijPlatform.pluginVerification.ides.ide(IntelliJPlatformType.Rider, properties("pluginVerifierIdeVersions"))
181181
} else {
182-
intellijPlatform.verifyPlugin.ides.ide(IntelliJPlatformType.IntellijIdeaUltimate, properties("pluginVerifierIdeVersions"))
182+
intellijPlatform.pluginVerification.ides.ide(IntelliJPlatformType.IntellijIdeaUltimate, properties("pluginVerifierIdeVersions"))
183183
}
184184
}

components/ide/jetbrains/backend-plugin/src/main/kotlin/kotlinx/coroutines/guava/ListenableFuture.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ public fun <T> ListenableFuture<T>.asDeferred(): Deferred<T> {
159159
cancel(false)
160160
}
161161
// Return hides the CompletableDeferred. This should prevent casting.
162-
@OptIn(InternalForInheritanceCoroutinesApi::class)
163162
return object : Deferred<T> by deferred {}
164163
}
165164

0 commit comments

Comments
 (0)