[Java] remove tabs from java templates (#11557)

* remove tabs from java templates

* replaces tabs with spaces in java templates
This commit is contained in:
William Cheng
2022-02-10 10:47:08 +08:00
committed by GitHub
parent 8455c1cd23
commit 3cb4b7d08e
13 changed files with 14 additions and 14 deletions

View File

@@ -638,7 +638,7 @@ public class ApiClient extends JavaTimeFormatter {
public <T> ResponseEntity<T> invokeAPI(String path, HttpMethod method, Map<String, Object> pathParams, MultiValueMap<String, String> queryParams, Object body, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams, MultiValueMap<String, Object> formParams, List<MediaType> accept, MediaType contentType, String[] authNames, ParameterizedTypeReference<T> returnType) throws RestClientException {
updateParamsForAuth(authNames, queryParams, headerParams, cookieParams);
Map<String,Object> uriParams = new HashMap<>();
Map<String,Object> uriParams = new HashMap<>();
uriParams.putAll(pathParams);
String finalUri = path;