diff options
author | Michael G. Schwern <schwern@pobox.com> | 2012-07-27 02:26:05 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2012-07-28 00:36:17 +0200 |
commit | 10c2aa5928b5309374bb4328f1c2849cb4ae65cc (patch) | |
tree | 1b68a9b74290241c38952a21f9bd5a03142d1af1 /perl/Git/SVN | |
parent | Load all the modules in one place and before running code. (diff) | |
download | git-10c2aa5928b5309374bb4328f1c2849cb4ae65cc.tar.xz git-10c2aa5928b5309374bb4328f1c2849cb4ae65cc.zip |
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')
-rw-r--r-- | perl/Git/SVN/Fetcher.pm | 1 |
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; |