Subject: | warning when $self->{parser} is undef |
Not a bug, but a warning that could perhaps be avoided:
(in cleanup) Can't call method "release" on an undefined value at
lib/perl5/AnyEvent/XMPP/Parser.pm line 250 during global destruction.
at lib/perl5/AnyEvent/XMPP/Parser.pm line 250.
AnyEvent::XMPP::Parser::DESTROY('AnyEvent::XMPP::Parser=HASH(0xae
71e30)') called at ...
eval {...} called at ...
The warning could be suppressed via something like:
$self->{parser} and $self->{parser}->release;