summaryrefslogtreecommitdiff
path: root/perl/Git/SVN/Fetcher.pm
diff options
context:
space:
mode:
authorLibravatar Michael G. Schwern <schwern@pobox.com>2012-07-26 17:26:05 -0700
committerLibravatar Eric Wong <normalperson@yhbt.net>2012-07-27 22:36:17 +0000
commit10c2aa5928b5309374bb4328f1c2849cb4ae65cc (patch)
tree1b68a9b74290241c38952a21f9bd5a03142d1af1 /perl/Git/SVN/Fetcher.pm
parentLoad all the modules in one place and before running code. (diff)
downloadtgif-10c2aa5928b5309374bb4328f1c2849cb4ae65cc.tar.xz
Move Git::IndexInfo into its own file.
Straight cut & paste. Didn't require any fixing. Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl/Git/SVN/Fetcher.pm')
-rw-r--r--perl/Git/SVN/Fetcher.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl/Git/SVN/Fetcher.pm b/perl/Git/SVN/Fetcher.pm
index ef8e9ed2a5..76fae9bce0 100644
--- a/perl/Git/SVN/Fetcher.pm
+++ b/perl/Git/SVN/Fetcher.pm
@@ -57,6 +57,7 @@ sub new {
$self->{file_prop} = {};
$self->{absent_dir} = {};
$self->{absent_file} = {};
+ require Git::IndexInfo;
$self->{gii} = $git_svn->tmp_index_do(sub { Git::IndexInfo->new });
$self->{pathnameencoding} = Git::config('svn.pathnameencoding');
$self;