diff --git a/spring-web-reactive/src/main/kotlin/org/springframework/web/reactive/function/client/ClientResponseExtensions.kt b/spring-web-reactive/src/main/kotlin/org/springframework/web/reactive/function/client/ClientResponseExtensions.kt index b603336ba31..ae539d54de9 100644 --- a/spring-web-reactive/src/main/kotlin/org/springframework/web/reactive/function/client/ClientResponseExtensions.kt +++ b/spring-web-reactive/src/main/kotlin/org/springframework/web/reactive/function/client/ClientResponseExtensions.kt @@ -37,6 +37,3 @@ fun ClientResponse.bodyToFlux(type: KClass) : Flux = bodyToFlux( * @since 5.0 */ inline fun ClientResponse.bodyToFlux() = bodyToFlux(T::class.java) - - -