ok2c commented on code in PR #423: URL: https://github.com/apache/httpcomponents-client/pull/423#discussion_r1138607416
########## httpclient5-fluent/src/main/java/org/apache/hc/client5/http/fluent/ContentResponseHandler.java: ########## @@ -26,29 +26,57 @@ */ package org.apache.hc.client5.http.fluent; -import java.io.IOException; - +import org.apache.hc.client5.http.HttpResponseException; import org.apache.hc.client5.http.impl.classic.AbstractHttpClientResponseHandler; +import org.apache.hc.core5.http.ClassicHttpResponse; import org.apache.hc.core5.http.ContentType; import org.apache.hc.core5.http.HttpEntity; import org.apache.hc.core5.http.io.entity.EntityUtils; +import java.io.IOException; Review Comment: @arturobernalg Please do not let imports move around unnecessarily. It is just useless noise. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
