From: Thomas Badie Date: Sun, 24 Jun 2012 21:37:34 +0000 (+0200) Subject: git-add--interactive.perl: Remove two unused variables X-Git-Tag: v1.7.11.2~16 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=70969f775d28d7d7dc1f0688f71741f6260d442b;p=git.git git-add--interactive.perl: Remove two unused variables The patch 8f0bef6 refactored this script and made the variable $fh unneeded in subs diff_applies and patch_update_file, but forgot to remove them. Signed-off-by: Thomas Badie Signed-off-by: Junio C Hamano --- diff --git a/git-add--interactive.perl b/git-add--interactive.perl index d948aa88d..710764abb 100755 --- a/git-add--interactive.perl +++ b/git-add--interactive.perl @@ -1067,7 +1067,6 @@ EOF } sub diff_applies { - my $fh; return run_git_apply($patch_mode_flavour{APPLY_CHECK} . ' --check', map { @{$_->{TEXT}} } @_); } @@ -1514,7 +1513,6 @@ sub patch_update_file { } if (@result) { - my $fh; my @patch = reassemble_patch($head->{TEXT}, @result); my $apply_routine = $patch_mode_flavour{APPLY}; &$apply_routine(@patch);