You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The init function of the class OVALContainer(OVALBaseObject) does not invoke parent's init function. This is a big red flag that could mean a lot of things, but, in general is an indicator that the inheritance link is superficial: the child class either does not use any of parent's functions or these functions are static functions disguised as methods. It could also be that it is a typo, and there is a time-bomb destined to set off at the most inconvenient time possible.
SCAP Security Guide Version:
master
Expected Results:
Class either call for parent's init or does not inherit form it.
The text was updated successfully, but these errors were encountered:
Description of problem:
The init function of the
class OVALContainer(OVALBaseObject)
does not invoke parent's init function. This is a big red flag that could mean a lot of things, but, in general is an indicator that the inheritance link is superficial: the child class either does not use any of parent's functions or these functions are static functions disguised as methods. It could also be that it is a typo, and there is a time-bomb destined to set off at the most inconvenient time possible.SCAP Security Guide Version:
master
Expected Results:
Class either call for parent's init or does not inherit form it.
The text was updated successfully, but these errors were encountered: