From 14af5d941a70f43906c4e6787f83fa48e276bfaf Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Thu, 31 Aug 2017 13:55:19 +0200 Subject: [PATCH] Javadoc Issue: SPR-15912 --- .../web/reactive/function/client/WebClient.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java b/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java index dbb4a722d4d..3122d94d70c 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java @@ -479,11 +479,6 @@ public interface WebClient { * .accept(MediaType.APPLICATION_JSON) * .retrieve() * .bodyToMono(Pojo.class); - * - * Mono<ResponseEntity<Pojo>> entityMono = client.get().uri("/") - * .accept(MediaType.APPLICATION_JSON) - * .retrieve() - * .bodyToEntity(Pojo.class); * * @return spec with options for extracting the response body */