diff options
author | Stefan Beller <sbeller@google.com> | 2018-03-28 15:35:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-29 09:44:51 -0700 |
commit | 0c89fdd739183234f86fe2be03a0374705ed93ed (patch) | |
tree | 22af2a3216e1c5f6ac2449262224c23a12f289ca /submodule-config.c | |
parent | submodule-config: add repository argument to submodule_from_{name, path} (diff) | |
download | tgif-0c89fdd739183234f86fe2be03a0374705ed93ed.tar.xz |
submodule-config: remove submodule_from_cache
This continues the story of bf12fcdf5e (submodule-config: store
the_submodule_cache in the_repository, 2017-06-22).
The previous patch taught submodule_from_path to take a repository into
account, such that submodule_from_{path, cache} are the same now.
Remove submodule_from_cache, migrating all its callers to
submodule_from_path.
Reviewed-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Reviewed-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule-config.c')
-rw-r--r-- | submodule-config.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/submodule-config.c b/submodule-config.c index 0ea1e927d2..9abe9166d5 100644 --- a/submodule-config.c +++ b/submodule-config.c @@ -635,15 +635,6 @@ const struct submodule *submodule_from_path(struct repository *r, return config_from(r->submodule_cache, treeish_name, path, lookup_path); } -const struct submodule *submodule_from_cache(struct repository *repo, - const struct object_id *treeish_name, - const char *key) -{ - gitmodules_read_check(repo); - return config_from(repo->submodule_cache, treeish_name, - key, lookup_path); -} - void submodule_free(struct repository *r) { if (r->submodule_cache) |