Skip to content

Commit

Permalink
Added token to services if it is provided #TASK-5914
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfeSanahuja committed Jan 13, 2025
1 parent 9c7399d commit aaa9c5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public Method() {
responses = new HashMap<>();
}

public Method(List<String> tags, String summary, String description, String operationId, List<String> consumes, List<String> produces, List<Parameter> parameters, Map<String,Map<String,Object>> responses, Map<String, List<String>> security) {
public Method(List<String> tags, String summary, String description, String operationId, List<String> consumes, List<String> produces, List<Parameter> parameters, Map<String, Map<String, Object>> responses, List<Map<String, List<String>>> security) {
this.tags = tags;
this.summary = summary;
this.description = description;
Expand Down

0 comments on commit aaa9c5a

Please sign in to comment.