[Spring] fix deprecated generation (#12832)

This commit is contained in:
Oleh Kurpiak
2022-07-13 06:08:28 +03:00
committed by GitHub
parent 8025aa3bfa
commit 2e2da7bc82
45 changed files with 51 additions and 0 deletions

View File

@@ -150,6 +150,7 @@ public interface PetApi {
* or Invalid tag value (status code 400)
* @deprecated
*/
@Deprecated
@Operation(
operationId = "findPetsByTags",
summary = "Finds Pets by tags",

View File

@@ -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();