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

rules.ForbidReturnInFinallyBlock.md Maven / Gradle / Ivy


Prevent the use of a `return` statement in the `finally` block.

Invalid:
````
try {
    doSomething();
{ catch (IOException e) {
    // log error
} finally (
    return true; // invalid
}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy