DRAFT
SuperAlwaysHasParentheses
Misconception:
To call a method m
on a superclass, parentheses are needed after the keyword super (e.g., super().m()
).
Incorrect
To call a method on a superclass, parentheses are needed after the keyword super
Correct
To call a method on a superclass, it is wrong to write parentheses after the keyword super
Language
Java