gmariotti
08/01/2023, 11:34 AMenum class MyEnum(@JsonValue val value: String) {
VALUE_1("my_value_1"),
VALUE_2("my_value_2"),
}
as
enum class MyEnum(
@JsonValue val value: String,
) {
VALUE_1("my_value_1"),
VALUE_2("my_value_2"),
}
because of standard:parameter-list-wrapping
? Or is this somehow related to the annotation like in this issue?