forked from loafle/openapi-generator-original
[Spring] fix deprecated generation (#12832)
This commit is contained in:
@@ -150,6 +150,7 @@ public interface PetApi {
|
||||
* or Invalid tag value (status code 400)
|
||||
* @deprecated
|
||||
*/
|
||||
@Deprecated
|
||||
@Operation(
|
||||
operationId = "findPetsByTags",
|
||||
summary = "Finds Pets by tags",
|
||||
|
||||
@@ -102,6 +102,7 @@ public interface PetApiDelegate {
|
||||
* @deprecated
|
||||
* @see PetApi#findPetsByTags
|
||||
*/
|
||||
@Deprecated
|
||||
default Mono<ResponseEntity<Flux<Pet>>> findPetsByTags(Set<String> tags,
|
||||
ServerWebExchange exchange) {
|
||||
Mono<Void> result = Mono.empty();
|
||||
|
||||
Reference in New Issue
Block a user