MissingSuperCall
Overriding method is missing a call to overridden super method

Severity
ERROR

The problem

API providers may annotate a method with an annotation like androidx.annotation.CallSuper or javax.annotation.OverridingMethodsMustInvokeSuper to require that overriding methods invoke the super method. This check enforces those annotations.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("MissingSuperCall") to the enclosing element.