Remove withTransport and withHttpClient APIs(#3152)
This commit is contained in:
parent
7191c12a65
commit
d3aaf1f542
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue