diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-05-06 16:20:14 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-05-09 09:40:29 +0200 |
commit | 86d5810b82965224b1270c3627da029588935abb (patch) | |
tree | e2eabf23ef294732729ab864e5d3a89fa019f3bd | |
parent | 4df53a64a18aeea88a459183437cbd033cf4ca71 (diff) | |
download | libgit2-86d5810b82965224b1270c3627da029588935abb.tar.gz |
pack: remove misleading comment
-rw-r--r-- | src/pack.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/pack.c b/src/pack.c index de038a45c..9c6a4e78b 100644 --- a/src/pack.c +++ b/src/pack.c @@ -546,13 +546,6 @@ static int packfile_unpack_delta( if (!cached) { /* have to inflate it */ error = git_packfile_unpack(&base, p, &base_offset); - - /* - * TODO: git.git tries to load the base from other packfiles - * or loose objects. - * - * We'll need to do this in order to support thin packs. - */ if (error < 0) return error; } |