## What problem are you trying to solve? Code readability. ## Describe the situation before applying the recipe <!-- Ideally as a self-contained code example, as a start to the recipe unit tests. --> ```java return a - b == 0; ``` ## Describe the situation after applying the recipe <!-- Ideally as a self-contained code example, as a start to the recipe unit tests. --> ```java return a == b; ``` ## Any additional context `a - b` might be in parentheses.