Java
Conditional can be pushed inside branch expression
Info
New
Last modified: 03 December 2024 Reports conditional expressions with then
and else
branches that are similar enough so that the expression can be moved inside. This action shortens the code.
Example:
double g(int a, int b) {
return a == b ? Math.cos(0) : Math.cos(1);
}
After the quick-fix is applied:
double g(int a, int b) {
return Math.cos(a == b ? 0 : 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.
ConditionalCanBePushedInsideExpression
New in 2017.2
Here you can find the description of settings available for the Conditional can be pushed inside branch expression inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?