-
Notifications
You must be signed in to change notification settings - Fork 274
fix(251): fix 251 gateway compilation #5514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| // Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| package compat.com.jetbrains.gateway.thinClientLink | ||
|
|
||
| import com.jetbrains.gateway.thinClientLink.LinkedClientManager | ||
| import com.jetbrains.rd.util.lifetime.Lifetime | ||
| import java.net.URI | ||
|
|
||
| fun startNewClient(lifetime: Lifetime, initialLink: URI, remoteIdentity: String?, onStarted: () -> Unit) = | ||
| LinkedClientManager.getInstance().startNewClient(lifetime, initialLink, remoteIdentity, onStarted) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| // Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| package compat.com.jetbrains.gateway.thinClientLink | ||
|
Check notice on line 3 in plugins/toolkit/jetbrains-gateway/src-251+/src-243/compat/com/jetbrains/gateway/thinClientLink/StartNewClient.kt
|
||
|
|
||
| import com.jetbrains.gateway.thinClientLink.LinkedClientManager | ||
| import com.jetbrains.rd.util.lifetime.Lifetime | ||
| import java.net.URI | ||
|
|
||
| fun startNewClient(lifetime: Lifetime, initialLink: URI, remoteIdentity: String?, onStarted: () -> Unit) = | ||
| LinkedClientManager.getInstance().startNewClient(lifetime, initialLink, remoteIdentity, null, onStarted) | ||
|
Check warning on line 10 in plugins/toolkit/jetbrains-gateway/src-251+/src-243/compat/com/jetbrains/gateway/thinClientLink/StartNewClient.kt
|
||
Check warningCode scanning / QDJVMC Unstable API Usage Warning
'com.jetbrains.gateway.thinClientLink.LinkedClientManager.Companion' is declared in unstable 'com.jetbrains.gateway.thinClientLink.LinkedClientManager' marked with @ApiStatus.Experimental
Check warningCode scanning / QDJVMC Unstable API Usage Warning
'getInstance()' is declared in unstable 'com.jetbrains.gateway.thinClientLink.LinkedClientManager' marked with @ApiStatus.Experimental
Check warningCode scanning / QDJVMC Unstable API Usage Warning
'startNewClient(com.jetbrains.rd.util.lifetime.Lifetime, java.net.URI, java.lang.String, java.lang.String, kotlin.jvm.functions.Function0)' is declared in unstable 'com.jetbrains.gateway.thinClientLink.LinkedClientManager' marked with @ApiStatus.Experimental
|
||
Check notice
Code scanning / QDJVMC
Package name does not match containing directory Note