Lambda body can be code block
Reports lambdas whose body is an expression and suggests converting expression bodies to code blocks.
Example:
n -> n + 1
After the quick-fix is applied:
n -> {
return n + 1;
}
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023