Subject: | issue in User::Identity::Item? |
Date: | Tue, 7 Nov 2017 21:54:16 -0800 |
To: | bug-User-Identity [...] rt.cpan.org |
From: | Randy Diffenderfer <randy.diffenderfer [...] gmail.com> |
sub find($$)
{ my $all = shift->{UI_col};
my $collname = shift;
my $collection
= ref $collname && $collname->isa('User::Identity::Collect') ? $collname
: ($all->{$collname} || $all->{$collname.'s'});
return () unless defined $collection;
$collection->find(shift);
}
shouldn't this be a 'User::Identity::Collection' ?