diff options
| author | Karthik Nayak <karthik.188@gmail.com> | 2025-07-15 13:28:27 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-07-15 11:54:19 -0700 |
| commit | 883a7ea0543426d0ecb172c72c8f706348961605 (patch) | |
| tree | 325cadf91fe09702957869afd26ae494baba6771 /refs/ref-cache.h | |
| parent | 6bde5d43b769509141d7ebc0b2476bc2035bc673 (diff) | |
| download | git-883a7ea0543426d0ecb172c72c8f706348961605.tar.xz | |
ref-cache: remove unused function 'find_ref_entry()'
The 'find_ref_entry' function is no longer used, so remove it.
Signed-off-by: Karthik Nayak <karthik.188@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/ref-cache.h')
| -rw-r--r-- | refs/ref-cache.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/refs/ref-cache.h b/refs/ref-cache.h index 5f04e518c3..f635d2d824 100644 --- a/refs/ref-cache.h +++ b/refs/ref-cache.h @@ -202,13 +202,6 @@ void free_ref_cache(struct ref_cache *cache); void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry); /* - * Find the value entry with the given name in dir, sorting ref_dirs - * and recursing into subdirectories as necessary. If the name is not - * found or it corresponds to a directory entry, return NULL. - */ -struct ref_entry *find_ref_entry(struct ref_dir *dir, const char *refname); - -/* * Start iterating over references in `cache`. If `prefix` is * specified, only include references whose names start with that * prefix. If `prime_dir` is true, then fill any incomplete |
