We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In what version(s) of Spring Integration are you seeing this issue?
5.5.11
Describe the bug
The Kdoc for the following two functions appears to have been copy pasted from the filter Kdoc and not changed. See below.
/** * Inline function for [IntegrationFlowDefinition.filter] providing a `filter<MyTypeIn>()` variant * with reified generic type. */ inline fun <reified P> route(crossinline function: (P) -> Any?) { route(function) { } } /** * Inline function for [IntegrationFlowDefinition.filter] providing a `filter<MyTypeIn>()` variant * with reified generic type. */ inline fun <reified P, T> route( crossinline function: (P) -> T, crossinline configurer: KotlinRouterSpec<T, MethodInvokingRouter>.() -> Unit ) { this.delegate.route(P::class.java, { function(it) }) { configurer(KotlinRouterSpec(it)) } }
To Reproduce
N/A - documentation issue
Expected behavior
Sample
The text was updated successfully, but these errors were encountered:
@frayneposset ,
If you are good, consider to contribute the respective fix: https://github.com/spring-projects/spring-integration/blob/main/CONTRIBUTING.adoc.
We are having release today.
Sorry, something went wrong.
627a797
GH-3800: Fix Kotlin docs for route() DSL
route()
3a8f3d8
Fixes #3800 * Mention `Message` as a type for reified generic argument in Kotlin DSL docs **Cherry-pick to `5.5.x`**
Revert "spring-projectsGH-3800: Fix Kotlin docs for route() DSL"
e4ff2dc
This reverts commit 627a797.
Revert "Revert "spring-projectsGH-3800: Fix Kotlin docs for route()…
2007173
… DSL"" This reverts commit e4ff2dc.
No branches or pull requests
In what version(s) of Spring Integration are you seeing this issue?
5.5.11
Describe the bug
The Kdoc for the following two functions appears to have been copy pasted from the filter Kdoc and not changed. See below.
To Reproduce
N/A - documentation issue
Expected behavior
N/A - documentation issue
Sample
N/A - documentation issue
The text was updated successfully, but these errors were encountered: