mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 06:06:18 +07:00
GitOrigin-RevId: 5278e8f5a9bcc8ec6bb88a897c414242a9f19048
13 lines
507 B
Java
13 lines
507 B
Java
// "Put annotation attributes on separate lines" "true-preview"
|
|
|
|
|
|
class X {
|
|
|
|
@ApiResponses(value = {
|
|
@ApiResponse(responseCode = "200",
|
|
description = "Success response",
|
|
content = @Content(mediaType = PageAttributes.MediaType.APPLICATION_JSON, schema = @Schema(implementation = Procedure.class, type = "array"))),
|
|
@ApiResponse(responseCode = "400", description = "Bad request", content = @Content(mediaType = PageAttributes.MediaType.APPLICATION_JSON))
|
|
})
|
|
void x() {}
|
|
} |