Comment out unused pieces

This commit is contained in:
Duy Tran Khanh 2020-12-10 12:25:10 +07:00 committed by GitHub
parent 6a2aaaab70
commit e69dff24f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ public class HttpClient
{
public static class Builder {
public HttpClient build() {
return new HttpClient(this);
return new HttpClient(/* this */);
}
}
@ -15,9 +15,9 @@ public class HttpClient
return new Builder();
}
private Builder mBuilder;
protected HttpClient(Builder b) {
mBuilder = b;
// private Builder mBuilder;
protected HttpClient(/* Builder b */) {
// mBuilder = b;
}
// This method is not official java.net.http.HttpClient API.