in reply to Best Method of Object-Oriented Behavior Addition?
and not:return $self->SUPER::A();
The latter will always cause your method to appear to fail, or not return anything, even if SUPER::A is meant to return something legitimate once in a while.$self->SUPER::A(); return;
|
|---|