Skip to content

Commit

Permalink
openapi: Remove in method security #TASK-5914
Browse files Browse the repository at this point in the history
juanfeSanahuja committed Jan 31, 2025
1 parent 80a68fc commit 391aa39
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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, List<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) {
this.tags = tags;
this.summary = summary;
this.description = description;
@@ -38,7 +38,6 @@ public Method(List<String> tags, String summary, String description, String oper
this.produces = produces;
this.parameters = parameters;
this.responses = responses;
this.security = security;
}

public List<String> getTags() {

0 comments on commit 391aa39

Please sign in to comment.