...
Here is a list of CPAN modules that are deprecated, according to Perl::Critic.
Deprecated |
---|
Class::ISA |
Pod::Plainer |
Shell |
Switch |
Universal::isa |
Universal::can |
Universal::VERSION |
...
While this code works correctly now, the use
statement will one day not be accepted by the Perl interpreter.
Compliant Solution (
...
Universal::can()
)
This compliant solution uses Universal::can()
without importing it.
...