Reputation: 3689
Intellij formats the following match statement
case product @ Product(id, name) =>
....
to
case product@Product(id, name) =>
....
How do I disable the wrapping ? The wrapping makes it harder to read the code where are too many cases.
Upvotes: 0
Views: 34
Reputation: 6092
I am assuming, you are using IDEA 15.
Upvotes: 1