diff options
author | Eric Wong <normalperson@yhbt.net> | 2016-04-06 20:25:38 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-06 13:40:01 -0700 |
commit | ef8c95e985c348af0de5814fbe230b6967a4136e (patch) | |
tree | 13710e85bc778a24f2a1940b39548a7fe0e30aa8 /git-send-email.perl | |
parent | 765428699a5381f113d19974720bc91b5bfeaf1d (diff) | |
download | git-ef8c95e985c348af0de5814fbe230b6967a4136e.tar.gz |
send-email: do not load Data::Dumperew/send-email-drop-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 <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | git-send-email.perl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index e1e9b1460c..d76914755f 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); |