Subject: | Patch to remove debugging leftovers |
The module is using Data::Dumper even though the only line using it is
commented out.
The patch removes the use line and the comment.
Subject: | US_pm.diff |
--- ../Locale-US-1.2.orig/US.pm Sat Nov 24 14:29:32 2007
+++ US.pm Sat Nov 24 14:38:55 2007
@@ -4,8 +4,6 @@
use strict;
use warnings;
-use Data::Dumper;
-
require Exporter;
our @ISA = qw(Exporter);
@@ -46,7 +44,6 @@
$self->{state2code}{$state} = $code;
}
-# warn Dumper $self;
bless $self, $class;
}