Subject: | Useless code in /Event/RPC/Message.pm |
1.08's lib/Event/RPC/Message.pm defines %DECODERS and %ENCODERS hashes like:
my %DECODERS = (
STOR => sub { require Storable; Storable::thaw($_[0])
},
...
);
I cannot find where the two hashes are used. I believe these are some remnants superseded by %MESSAGE_FORMATS in lib/Event/RPC/Message/Negotiate.pm. If it is so, I recomend to remove the dead code from the lib/Event/RPC/Message.pm.