From: Eric Wong Date: Wed, 6 Apr 2016 20:25:38 +0000 (+0000) Subject: send-email: do not load Data::Dumper X-Git-Tag: v2.8.3~33^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ef8c95e985c348af0de5814fbe230b6967a4136e;p=git-core%2Fgit.git send-email: do not load Data::Dumper We never used Data::Dumper in this script. The only reference of it was always commented out and removed over a decade ago in commit 4bc87a28be020a6bf7387161c65ea3d8e4a0228b ("send-email: Change from Mail::Sendmail to Net::SMTP") Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index e1e9b1460..d76914755 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -22,7 +22,6 @@ use warnings; use Term::ReadLine; use Getopt::Long; use Text::ParseWords; -use Data::Dumper; use Term::ANSIColor; use File::Temp qw/ tempdir tempfile /; use File::Spec::Functions qw(catfile);