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 MikailBag committed May 31, 2020
1 parent 217a37d commit 52ddb5c
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 52ddb5c

Please sign in to comment.