diff options
| author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2021-09-28 15:02:20 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-09-28 15:12:04 -0700 |
| commit | 98961e42f047bf0a9891d6c7d58d54e86285ae52 (patch) | |
| tree | d1e4d37eef4600657f3a7ca0824e0c19587b3d5c | |
| parent | The ninth batch (diff) | |
| download | git-98961e42f047bf0a9891d6c7d58d54e86285ae52.tar.gz git-98961e42f047bf0a9891d6c7d58d54e86285ae52.zip | |
refs.[ch]: remove unused ref_storage_backend_exists()
This function was added in 3dce444f178 (refs: add a backend method
structure, 2016-09-04), but has never been used by anything. The only
caller that might care uses find_ref_storage_backend() directly.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | refs.c | 5 | ||||
| -rw-r--r-- | refs.h | 2 |
2 files changed, 0 insertions, 7 deletions
@@ -33,11 +33,6 @@ static struct ref_storage_be *find_ref_storage_backend(const char *name) return NULL; } -int ref_storage_backend_exists(const char *name) -{ - return find_ref_storage_backend(name) != NULL; -} - /* * How to handle various characters in refnames: * 0: An acceptable character for refs @@ -836,8 +836,6 @@ int reflog_expire(const char *refname, const struct object_id *oid, reflog_expiry_cleanup_fn cleanup_fn, void *policy_cb_data); -int ref_storage_backend_exists(const char *name); - struct ref_store *get_main_ref_store(struct repository *r); /** |
