Skip to content

Commit de87435

Browse files
committed
format
1 parent b4049e0 commit de87435

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

google-http-client-apache-v5/src/main/java/com/google/api/client/http/apache/v5/Apache5HttpResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public String getHeaderValue(int index) {
9999
public void disconnect() {
100100
request.abort();
101101
try {
102-
response.close();
102+
response.close();
103103
} catch (IOException e) {
104104
// the close() method contract won't allow us to declare a thrown exception. Here we just log
105105
// the error

google-http-client-apache-v5/src/main/java/com/google/api/client/http/apache/v5/Apache5ResponseContent.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import org.apache.hc.core5.http.ClassicHttpResponse;
66

77
/**
8-
* Class that wraps an {@link org.apache.hc.core5.http.HttpEntity}'s content {@link InputStream} along with the
9-
* {@link ClassicHttpResponse} that contains this entity. The main purpose is to be able to close the response
10-
* as well as the content input stream when {@link #close()} is called.
8+
* Class that wraps an {@link org.apache.hc.core5.http.HttpEntity}'s content {@link InputStream}
9+
* along with the {@link ClassicHttpResponse} that contains this entity. The main purpose is to be
10+
* able to close the response as well as the content input stream when {@link #close()} is called.
1111
*/
1212
public class Apache5ResponseContent extends InputStream {
1313
private final ClassicHttpResponse response;

0 commit comments

Comments
 (0)