summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2011-10-17 04:38:11 +0200
committerJunio C Hamano <gitster@pobox.com>2011-10-16 21:12:22 -0700
commitc5f29abd8098275382ff56d8cbb00d660a64b43e (patch)
treef6dc7b54925dc08c414b9f5ade3141ca61b45698 /refs.c
parent8bf90dc9bdf3fb1d2b1b2eb46293a719a3638acb (diff)
downloadgit-c5f29abd8098275382ff56d8cbb00d660a64b43e.tar.gz
clear_ref_cache(): inline function
clear_ref_cache() was only called from one place, so inline it there. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/refs.c b/refs.c
index a888cea56e..d8a4fa33e3 100644
--- a/refs.c
+++ b/refs.c
@@ -172,12 +172,6 @@ static void clear_loose_ref_cache(struct ref_cache *refs)
refs->did_loose = 0;
}
-static void clear_ref_cache(struct ref_cache *refs)
-{
- clear_packed_ref_cache(refs);
- clear_loose_ref_cache(refs);
-}
-
static struct ref_cache *create_ref_cache(const char *submodule)
{
int len;
@@ -215,7 +209,9 @@ static struct ref_cache *get_ref_cache(const char *submodule)
void invalidate_ref_cache(const char *submodule)
{
- clear_ref_cache(get_ref_cache(submodule));
+ struct ref_cache *refs = get_ref_cache(submodule);
+ clear_packed_ref_cache(refs);
+ clear_loose_ref_cache(refs);
}
static void read_packed_refs(FILE *f, struct ref_array *array)