Kotlin
Redundant SAM constructor
Warning
New
Last modified: 03 December 2024Reports SAM (Single Abstract Method) constructor usages which can be replaced with lambdas.
Example:
fun main() {
foo(Runnable { println("Hi!") })
}
fun foo(other: Runnable) {}
After the quick-fix is applied:
fun main() {
foo( { println("Hi!") })
}
fun foo(other: Runnable) {}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
RedundantSamConstructor
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 243.23126-IJ |
Thanks for your feedback!
Was this page helpful?