WIP: WebClient -- DIE LĂ–SUNG! -- Feinschliff...
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiException.java
index b82a05b..1d360db 100644 (file)
@@ -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.DataBuffer;
 import org.springframework.http.HttpHeaders;
 import org.springframework.http.HttpStatus;
-import org.springframework.http.ReactiveHttpInputMessage;
-import org.springframework.web.reactive.function.BodyExtractor.Context;
-import org.springframework.web.reactive.function.client.ClientResponse;
 
 
 
@@ -47,17 +43,6 @@ public class GraphApiException extends RuntimeException
 
 
 
-  public static GraphApiException create(ClientResponse response)
-  {
-    return
-        response
-            .body((ReactiveHttpInputMessage message, Context context) ->
-                message
-                    .getBody()
-                    .map(buffer -> buffer.asInputStream()))
-            .flatMap(is -> create(response.statusCode(), message.getHeaders(), is));
-  }
-
   public static GraphApiException create(
       HttpStatus status,
       HttpHeaders headers,