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

11 lines
490 B
Java

// "Put annotation attributes on separate lines" "true-preview"
class X {
@ApiResponses(value = {
@ApiResponse(responseCode = "200"<caret>, 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() {}
}