io.codemodder.codemods.RemoveCommentedCodeCodemod.description.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-codemods Show documentation
Show all versions of core-codemods Show documentation
Codemods for fixing common errors across many Java projects
This change eliminates commented-out code that may impede readability and distract focus. Any deleted code can still be accessed through the source control history if needed.
Our changes look something like this:
```diff
catch (IOException e) {
- // LOG.error("Unexpected problem ", ex);
return handleError(ex);
}
```