Skip to content

Commit

Permalink
clear_ref_cache(): inline function
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Oct 17, 2011
1 parent 8bf90dc commit c5f29ab
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions refs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c5f29ab

Please sign in to comment.