Issue: SPR-15912
This commit is contained in:
Arjen Poutsma 2017-08-31 13:55:19 +02:00
parent 2f812112c2
commit 14af5d941a
1 changed files with 0 additions and 5 deletions

View File

@ -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);
* </pre>
* @return spec with options for extracting the response body
*/