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

rules.UselessSuperCtorCall.md Maven / Gradle / Ivy


Checks for useless calls to the `super()` method in constructors.

Invalid:
````
class Dummy {
    Dummy() {
        super();
    }
}
class Derived extends Base {
    Derived() {
        super();
    }
}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy