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

rules.RedundantReturn.md Maven / Gradle / Ivy


Checks for redundant return statements.

Invalid:
````
HelloWorld() {
    doStuff();
    return;
}
void doStuff() {
    doMoreStuff();
    return;
}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy