Skip Menu |

This queue is for tickets about the Rcs-Parser CPAN distribution.

Report information
The Basics
Id: 92643
Status: resolved
Estimated: 5 min
Worked: 5 min
Priority: 0/
Queue: Rcs-Parser

People
Owner: bennie [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.03
  • 0.01
  • 0.02
Fixed in: 0.06



Subject: all_versions() is not OO
all_versions() caches the result of the sorted version array in an "our" variable, and effectively prevents using this method on multiple objects. Either store the result within $self (e.g. $self->{all_versions}), or don't cache the result at all. Regards, Slaven
Good catch on "our" bypassing multiple objects. Dumb mistake. Will go with your suggestion of binding it to $self.