![JAR search and dependency download from the Maven repository](/logo.png)
io.codemodder.codemods.RemoveUselessParenthesesCodemod.description.md Maven / Gradle / Ivy
This change removes redundant parentheses. These extra parentheses make it harder to understand the code.
Our changes look something like this:
```diff
- int leftOver = (int) (((bitCount >>> 3)) & 0x3f);
+ int leftOver = (int) ((bitCount >>> 3) & 0x3f);
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy