Remove unused Coroutines extension parameter

This commit is contained in:
Sebastien Deleuze 2019-07-11 09:55:10 +02:00
parent 4a5063f4c0
commit c08035b674
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlux(): Flux<T> =
* @since 5.2
*/
@ExperimentalCoroutinesApi
inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(batchSize: Int = 1): Flow<T> =
inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(): Flow<T> =
bodyToFlux<T>().asFlow()
/**