Subject: | Missing semicolon in SearchBuilder |
There is a missing semicolon on the return statement in "new".
#instantiate a new object.
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
my $self = {};
bless ($self, $class);
$self->_Init(@_);
return ($self)
here--------------^
}