WIP: WebClient
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiException.java
index a696f6e..1d360db 100644 (file)
@@ -8,12 +8,10 @@ import com.fasterxml.jackson.databind.SerializationFeature;
 import java.io.ByteArrayInputStream;
 import java.io.IOException;
 import java.io.InputStream;
-import java.util.function.Supplier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.http.HttpHeaders;
 import org.springframework.http.HttpStatus;
-import org.springframework.web.reactive.function.client.ClientResponse;
 
 
 
@@ -45,17 +43,6 @@ public class GraphApiException extends RuntimeException
 
 
 
-  public static Supplier<GraphApiException> create(ClientResponse response)
-  {
-    HttpStatus status = response.statusCode();
-    HttpHeaders headers = response.headers().asHttpHeaders();
-    return
-        () -> response
-            .bodyToMono(InputStream.class)
-            .map(is -> create(status , headers, is))
-            .block();
-  }
-
   public static GraphApiException create(
       HttpStatus status,
       HttpHeaders headers,