diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-05-08 16:40:41 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2010-05-09 01:25:19 -0700 |
commit | 1174768b460a5f24ef0323783ab69c578e5aa44a (patch) | |
tree | 40361d75d6bc2220979f6c3c05ce39a688dbeb2f | |
parent | git-svn documentation: minor grammar fix (diff) | |
download | tgif-1174768b460a5f24ef0323783ab69c578e5aa44a.tar.xz |
git-svn: Remove unused use of File::Temp
The use line was added in ffe256f9. File::Temp calls were later moved
to Git.pm in 0b19138b, but that commit neglected to remove the
now-redundant import.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Acked-by: Eric Wong <normalperson@yhbt.net>
-rwxr-xr-x | git-svn.perl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index dc668034d0..74d86128cc 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -4000,7 +4000,6 @@ use vars qw/@ISA/; use strict; use warnings; use Carp qw/croak/; -use File::Temp qw/tempfile/; use IO::File qw//; use vars qw/$_ignore_regex/; |