Remove withTransport and withHttpClient APIs(#3152)

This commit is contained in:
Mikael Mengistu 2018-10-18 16:31:44 -07:00 committed by GitHub
parent 7191c12a65
commit d3aaf1f542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,12 +22,12 @@ public class HttpHubConnectionBuilder {
this.url = url; this.url = url;
} }
public HttpHubConnectionBuilder withTransport(Transport transport) { HttpHubConnectionBuilder withTransport(Transport transport) {
this.transport = transport; this.transport = transport;
return this; return this;
} }
public HttpHubConnectionBuilder withHttpClient(HttpClient httpClient) { HttpHubConnectionBuilder withHttpClient(HttpClient httpClient) {
this.httpClient = httpClient; this.httpClient = httpClient;
return this; return this;
} }