Commit 86d5810b82965224b1270c3627da029588935abb

Carlos Martín Nieto 2014-05-06T16:20:14

pack: remove misleading comment

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/src/pack.c b/src/pack.c
index de038a4..9c6a4e7 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;
 	}