Subject: | UNIVERSAL import deprecation and misuse of isa |
beginning with perl 5.12, UNIVERSAL->import is deprecated. it'll be
removed in a future perl. using Google::Checkout::General::Util results
in the following warning being printed to STDERR:
UNIVERSAL->import is deprecated and will be removed in a future perl
the issues is the explicit import of the "isa" function on line 103:
use UNIVERSAL qw/isa/;
instead, isa should be used as an instance method. the method is_object
is superfluous. calls to ->is_object should be replaced with calls to -
Show quoted text
>isa.