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;
}
- 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.
LambdaBodyCanBeCodeBlock
This inspection depends on the Java feature 'Lambda expressions', which is available since Java 8.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |