Subject: | resolve_filename in sub load |
calling $class->load gives error
Can't locate object method "resolve_filename" via
package "Class::Inspector"
at /usr/local/lib/perl5/site_perl/5.8.8/Class/Handle.pm line 283
Changing line 285 from
Class::Inspector->resolve_filename( $self->{name} );
to
Class::Inspector->resolved_filename( $self->{name} );
fixes this and appears to work.
Any comments on this and weather it is a bug or am I missing something.
I am using Class::Inspector Version 1.13 which only has a
resolved_filename method and not a resolve_filename method.
Ian