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 {
177177
178178tasks.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}
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments