From 746593bdcaf86827e016c97e091442d6a227de0f Mon Sep 17 00:00:00 2001 From: Stefan Beller Date: Sat, 26 Oct 2013 19:03:01 +0200 Subject: refs: remove unused function invalidate_ref_cache The function 'invalidate_ref_cache' was introduced in 79c7ca5 (2011-10-17, invalidate_ref_cache(): rename function from invalidate_cached_refs()) by a rename and elevated to be publicly usable in 8be8bde (2011-10-17, invalidate_ref_cache(): expose this function in the refs API) However it is not used anymore, as 8bf90dc (2011-10-17, write_ref_sha1(): only invalidate the loose ref cache) and (much) later 506a760 (2013-04-22, refs: change how packed refs are deleted) removed any calls to this function. So it seems as if we don't need that function any more, good bye! Signed-off-by: Stefan Beller Acked-by: Michael Haggerty Signed-off-by: Junio C Hamano --- refs.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'refs.c') diff --git a/refs.c b/refs.c index 7922261580..d20834054b 100644 --- a/refs.c +++ b/refs.c @@ -943,13 +943,6 @@ static struct ref_cache *get_ref_cache(const char *submodule) return refs; } -void invalidate_ref_cache(const char *submodule) -{ - struct ref_cache *refs = get_ref_cache(submodule); - clear_packed_ref_cache(refs); - clear_loose_ref_cache(refs); -} - /* The length of a peeled reference line in packed-refs, including EOL: */ #define PEELED_LINE_LENGTH 42 -- cgit v1.2.1