I have a data class with 15 properties (I need to ...
# intellij
y
I have a data class with 15 properties (I need to write a program to convert a form to usable spreadsheet). IDEA suggests me to replace
list.filter { item -> /* do something with item.pair */ }
to
items.filter { (a, b, c, d, e, f, g, h, i, j, k, l, m, n, pair) -> /* do something with pair */ }
As you can see, pair is the last argument, so this suggestion is bad.
m