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

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

There is a newer version: 0.97.3
Show newest version
This change removes exceptions that Sonar believes are not possible to be thrown. Cleaning these improves readability and helps callers of the method understand how to effectively use the methods.

Our changes look something like this:

```diff
-  void it_throws_stuff() throws URISyntaxException {
+  void it_throws_stuff() {
     // not yet implemented
   }     
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy