aboutsummaryrefslogtreecommitdiff
path: root/java/com/android/libraries/entitlement/http/HttpResponse.java
diff options
context:
space:
mode:
authorKiwon Park <kiwonp@google.com>2022-08-24 23:20:27 +0000
committerKiwon Park <kiwonp@google.com>2022-10-04 00:10:11 +0000
commit00d7763e6db1568259872680725025e12234d816 (patch)
tree2949634f84828094397442aa8cd97b305070dd49 /java/com/android/libraries/entitlement/http/HttpResponse.java
parent5d4fc15dc48a6361155178c6cb56be4c0eace72c (diff)
downloadservice_entitlement-00d7763e6db1568259872680725025e12234d816.tar.gz
Add ability to save the HTTP request/responses.
Bug: 223430297 Test: HttpClientTest Change-Id: I395c26dff80e44a1531b70ca8310de1298b95613 Merged-In: I395c26dff80e44a1531b70ca8310de1298b95613
Diffstat (limited to 'java/com/android/libraries/entitlement/http/HttpResponse.java')
-rw-r--r--java/com/android/libraries/entitlement/http/HttpResponse.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/java/com/android/libraries/entitlement/http/HttpResponse.java b/java/com/android/libraries/entitlement/http/HttpResponse.java
index f495578..f76fdd6 100644
--- a/java/com/android/libraries/entitlement/http/HttpResponse.java
+++ b/java/com/android/libraries/entitlement/http/HttpResponse.java
@@ -73,22 +73,4 @@ public abstract class HttpResponse {
.setResponseMessage("")
.setCookies(ImmutableList.of());
}
-
- @Override
- public final String toString() {
- return new StringBuilder("HttpResponse{")
- .append("contentType=")
- .append(contentType())
- .append(" body=(")
- .append(body().length())
- .append(" characters)")
- .append(" responseCode=")
- .append(responseCode())
- .append(" responseMessage=")
- .append(responseMessage())
- .append(" cookies=[")
- .append(cookies().size())
- .append(" cookies]}")
- .toString();
- }
}