Back to Intellij Community

ExpressionMayBeFactorized

java/java-impl/resources/inspectionDescriptions/ExpressionMayBeFactorized.html

2025.3-rc-2272 B
Original Source

Reports expressions that can be factorized, i.e. reorganized to pull out a common factor. This reduces redundancy and could improve the readability of your code.

Example:

a && b || a && c

After the quick-fix is applied:

a && (b || c)

New in 2021.3