WIP: WebClient -- DIE LĂ–SUNG! -- Feinschliff...
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiException.java
index 3ebc64f..1d360db 100644 (file)
@@ -12,11 +12,6 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.http.HttpHeaders;
 import org.springframework.http.HttpStatus;
-import org.springframework.http.ReactiveHttpInputMessage;
-import org.springframework.web.reactive.function.BodyExtractor;
-import org.springframework.web.reactive.function.BodyExtractor.Context;
-import org.springframework.web.reactive.function.client.ClientResponse;
-import reactor.core.publisher.Mono;
 
 
 
@@ -48,16 +43,6 @@ public class GraphApiException extends RuntimeException
 
 
 
-  public static Mono<GraphApiException> create(ClientResponse response)
-  {
-    HttpStatus status = response.statusCode();
-    HttpHeaders headers = response.headers().asHttpHeaders();
-    return
-        response
-            .bodyToMono(InputStream.class)
-            .map(is -> create(status , headers, is));
-  }
-
   public static GraphApiException create(
       HttpStatus status,
       HttpHeaders headers,