Skip to content
Snippets Groups Projects
Commit ed70e29f authored by Craig Melsopp's avatar Craig Melsopp
Browse files

Removed spurious method.

parent 30401e60
No related branches found
No related tags found
No related merge requests found
......@@ -167,27 +167,6 @@ sub setsize {
}
=head2 probecount
Arg [1] : int $probecount
Example : none
Description: getter / setter / lazy load for attribute probecount. Here you
can optionally provide how manny probes are there on the array.
Returntype : int
Exceptions : none
Caller : general
=cut
sub probecount {
my $self = shift;
$self->{'probecount'} = shift if( @_) ;
if(( ! exists $self->{'probecount'}) && $self->{'dbID'} && $self->{'adaptor'} ) {
$self->adaptor->fetch_attributes( $self );
}
return $self->{'probecount'};
}
=head2 superset
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment