Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/splitJoinLines/afterSplitAnnotationAttributes.java
T
2026-06-10 19:42:11 +00:00

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() {}
}