...
Code Block | ||
---|---|---|
| ||
private void readSensitiveFile() { // ... } |
Exceptions
MET03-EX1: Classes that are declared final
are exempt from this guideline as they imply that the contained methods cannot be overridden.
...
...
Code Block | ||
---|---|---|
| ||
private void readSensitiveFile() { // ... } |
MET03-EX1: Classes that are declared final
are exempt from this guideline as they imply that the contained methods cannot be overridden.
...