sub _Initialise { my $self = shift; # Nothing to do here yet }
- Should be:
sub _Initialise { my $self = shift; $self->SUPER::_Initialise( @_ ); # Still nothing to do here }
sub _Initialise { my $self = shift; # Nothing to do here yet }
sub _Initialise { my $self = shift; $self->SUPER::_Initialise( @_ ); # Still nothing to do here }