From 32dfa9c65c5a1697038bde61f7907baf3027add2 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Thu, 21 Nov 2019 21:12:42 +0100 Subject: [PATCH] =?utf8?q?WIP:=20WebClient=20--=20DIE=20L=C3=96SUNG!=20--?= =?utf8?q?=20Feinschliff...?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../de/juplo/facebook/errors/GraphApiException.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main/java/de/juplo/facebook/errors/GraphApiException.java b/src/main/java/de/juplo/facebook/errors/GraphApiException.java index ce3836c..1d360db 100644 --- a/src/main/java/de/juplo/facebook/errors/GraphApiException.java +++ b/src/main/java/de/juplo/facebook/errors/GraphApiException.java @@ -10,12 +10,8 @@ import java.io.IOException; import java.io.InputStream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.core.io.buffer.DataBufferUtils; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; -import org.springframework.web.reactive.function.BodyExtractors; -import org.springframework.web.reactive.function.client.ClientResponse; -import reactor.core.publisher.Mono; @@ -47,14 +43,6 @@ public class GraphApiException extends RuntimeException - public static Mono create(ClientResponse response) - { - return - response - .createException() - .map(we -> create(response.statusCode(), response.headers().asHttpHeaders(), we.getResponseBodyAsByteArray())); - } - public static GraphApiException create( HttpStatus status, HttpHeaders headers, -- 2.20.1