Skip to content

Commit

Permalink
Change access updateParamsForAuth to protected (OpenAPITools#5940)
Browse files Browse the repository at this point in the history
So that it can be overridden with a custom behaviour.
  • Loading branch information
flozano authored and michaelpro1 committed May 7, 2020
1 parent febaf7d commit fdd0289
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ public class ApiClient {
* @param queryParams The query parameters
* @param headerParams The header parameters
*/
private void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) {
protected void updateParamsForAuth(String[] authNames, MultiValueMap<String, String> queryParams, HttpHeaders headerParams, MultiValueMap<String, String> cookieParams) {
for (String authName : authNames) {
Authentication auth = authentications.get(authName);
if (auth == null) {
Expand Down

0 comments on commit fdd0289

Please sign in to comment.