Check "de.unkrig: Zero-parameter superconstructor invocation"

Verifies that no constructor calls the zero-parameter superconstructor.
class Foo extends Bar {
    Foo(int a, int b) {
        super();
    }
}

Quickfixes:

Remove
Removes the redundant invocation of the zero-parameter superconstructor.