Skip Menu |

This queue is for tickets about the Compress-Raw-Bzip2 CPAN distribution.

Report information
The Basics
Id: 88259
Status: resolved
Priority: 0/
Queue: Compress-Raw-Bzip2

People
Owner: Nobody in particular
Requestors: nick [...] ccl4.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: 2.063



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 ;