in reply to Re: Need Help Refactoring Method Calls
in thread Need Help Refactoring Method Calls

$meth->( 'My::Class::XXX', @_ );
Or, even stranger, but more logical, especially when you have an instance:
My::Class::XXX->$meth(@_);

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.