Subject: | Compress::Raw::Bzip2 uses AutoLoader for no reason |
Compress::Raw::Bzip2 loads the AutoLoader module, but doesn't have any autoloaded routines. This is a bit wasteful.
It's also one of very few modules in the perl code distribution still using AutoLoader. It would be nice to drop this to zero.
I've not done any digging in history to work out why things are they
way they are now.
Patch attached that removes the AutoLoader references.
Nicholas Clark
Subject: | Bzip2-de-Autoload.patch |
diff --git a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
index 1968658..10e6213 100644
--- a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
+++ b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
@@ -6,7 +6,6 @@ use warnings ;
require 5.006 ;
require Exporter;
-use AutoLoader;
use Carp ;
use bytes ;