Fix missing method signature (#1225)

This commit is contained in:
Ivan Semenov 2024-02-20 08:22:16 +01:00 committed by GitHub
parent 405536a333
commit 442b34ef89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -163,7 +163,7 @@ JsonPath library unbundled
`com.intellij.collaboration.ui.codereview.details.model.CodeReviewChangesViewModel.getSelectedCommitIndex()` method return type changed from `Flow` to `SharedFlow` `com.intellij.collaboration.ui.codereview.details.model.CodeReviewChangesViewModel.getSelectedCommitIndex()` method return type changed from `Flow` to `SharedFlow`
: Concrete type usage forced to ensure correct behavior : Concrete type usage forced to ensure correct behavior
`com.intellij.collaboration.auth.ui.login.LoginTokenGenerator` method return type changed from `String` to `void` `com.intellij.collaboration.auth.ui.login.LoginTokenGenerator.generateToken(String)` method return type changed from `String` to `void`
: Removed unused return value : Removed unused return value
`com.intellij.collaboration.auth.ui.login.TokenLoginDialog(Project, Component, LoginModel, String, DialogPanelSupplier)` constructor parameter type changed from `() -> DialogPanel` to `CoroutineScope.() -> DialogPanel` `com.intellij.collaboration.auth.ui.login.TokenLoginDialog(Project, Component, LoginModel, String, DialogPanelSupplier)` constructor parameter type changed from `() -> DialogPanel` to `CoroutineScope.() -> DialogPanel`