Commit 7d74cd44d5c538383263dfa9f9d13868e9fdc00f

Marc Pegon 2011-05-29T11:46:42

Deleted unused method git_cached_object_match, since we do not explore the cache when searching objects from a short oid.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/src/cache.h b/src/cache.h
index 3038030..4794dea 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -42,11 +42,6 @@ GIT_INLINE(int) git_cached_obj_compare(git_cached_obj *obj, const git_oid *oid)
 	return git_oid_cmp(&obj->oid, oid);
 }
 
-GIT_INLINE(int) git_cached_obj_match(unsigned int len, git_cached_obj *obj, const git_oid *oid)
-{
-	return git_oid_match(len, &obj->oid, oid);
-}
-
 GIT_INLINE(void) git_cached_obj_incref(git_cached_obj *obj)
 {
 	git_atomic_inc(&obj->refcount);