Lambda parameter type can be specified
Reports lambda parameters that do not have their type specified and suggests adding the missing type declarations.
Example:
Function<String, Integer> length = a -> a.length();
After the quick-fix is applied:
Function<String, Integer> length = (String a) -> a.length();
- 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.
LambdaParameterTypeCanBeSpecified
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 |