fix java doc issue (#2435)

This commit is contained in:
William Cheng
2019-03-18 20:58:14 +08:00
committed by GitHub
parent ed30e85d1e
commit 0b15fac3e1
6 changed files with 6 additions and 9 deletions

View File

@@ -174,7 +174,7 @@ public class ApiClient {
* @param newHttpClient An instance of OkHttpClient
* @return Api Client
*/
public ApiClient setHttpClient(OkHttpClient newHttpClient) {
public ApiClient setHttpClient(OkHttpClient newHttpClient) {
if(!httpClient.equals(newHttpClient)) {
OkHttpClient.Builder builder = newHttpClient.newBuilder();
Iterator<Interceptor> networkInterceptorIterator = httpClient.networkInterceptors().iterator();

View File

@@ -1238,8 +1238,7 @@ public class FakeApi {
/**
* Build call for testGroupParameters
* @param _progressListener Progress listener
* @param _progressRequestListener Progress request listener
* @param _callback ApiCallback API callback
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/