Skip to content

Commit c08035b

Browse files
committed
Remove unused Coroutines extension parameter
1 parent 4a5063f commit c08035b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlux(): Flux<T> =
119119
* @since 5.2
120120
*/
121121
@ExperimentalCoroutinesApi
122-
inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(batchSize: Int = 1): Flow<T> =
122+
inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(): Flow<T> =
123123
bodyToFlux<T>().asFlow()
124124

125125
/**

0 commit comments

Comments
 (0)