File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
components/ide/jetbrains/backend-plugin
src/main/kotlin/kotlinx/coroutines/guava Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ tasks {
177
177
178
178
tasks.register(" runPluginVerifier" ) {
179
179
if (properties(" platformType" ) == " RD" ) {
180
- intellijPlatform.verifyPlugin .ides.ide(IntelliJPlatformType .Rider , properties(" pluginVerifierIdeVersions" ))
180
+ intellijPlatform.pluginVerification .ides.ide(IntelliJPlatformType .Rider , properties(" pluginVerifierIdeVersions" ))
181
181
} else {
182
- intellijPlatform.verifyPlugin .ides.ide(IntelliJPlatformType .IntellijIdeaUltimate , properties(" pluginVerifierIdeVersions" ))
182
+ intellijPlatform.pluginVerification .ides.ide(IntelliJPlatformType .IntellijIdeaUltimate , properties(" pluginVerifierIdeVersions" ))
183
183
}
184
184
}
Original file line number Diff line number Diff line change @@ -159,7 +159,6 @@ public fun <T> ListenableFuture<T>.asDeferred(): Deferred<T> {
159
159
cancel(false )
160
160
}
161
161
// Return hides the CompletableDeferred. This should prevent casting.
162
- @OptIn(InternalForInheritanceCoroutinesApi ::class )
163
162
return object : Deferred <T > by deferred {}
164
163
}
165
164
You can’t perform that action at this time.
0 commit comments