You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now this a.let { print(it) } and this a.let { msg -> print(msg) } are allowed but they should be flagged as well because you can replace both with println(a).
Right now this
a.let { print(it) }and thisa.let { msg -> print(msg) }are allowed but they should be flagged as well because you can replace both withprintln(a).IntelliJ mark them as unnecessary too.