All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.codemods.RemoveUselessParenthesesCodemod.description.md Maven / Gradle / Ivy

There is a newer version: 0.97.3
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy