diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2023-02-10 11:28:38 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-10 20:38:14 +0100 |
commit | fcb864bce70573380e6409c4ca25d1bdf16b0841 (patch) | |
tree | a443ad93e150ee0aa0e5c8a1111fa35dc092ce7c /contrib/coccinelle/index-compatibility.cocci | |
parent | cocci & cache-tree.h: migrate "write_cache_as_tree" to "*_index_*" (diff) | |
download | git-fcb864bce70573380e6409c4ca25d1bdf16b0841.tar.xz git-fcb864bce70573380e6409c4ca25d1bdf16b0841.zip |
cache-tree API: remove redundant update_main_cache_tree()
Remove the redundant update_main_cache_tree() function, and make its
users use cache_tree_update() instead.
The behavior of populating the "the_index.cache_tree" if it wasn't
present already was needed when this function was introduced in [1],
but it hasn't been needed since [2]; The "cache_tree_update()" will
now lazy-allocate, so there's no need for the wrapper.
1. 996277c5206 (Refactor cache_tree_update idiom from commit,
2011-12-06)
2. fb0882648e0 (cache-tree: clean up cache_tree_update(), 2021-01-23)
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/coccinelle/index-compatibility.cocci')
-rw-r--r-- | contrib/coccinelle/index-compatibility.cocci | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/coccinelle/index-compatibility.cocci b/contrib/coccinelle/index-compatibility.cocci index e245d805dc..9fca870162 100644 --- a/contrib/coccinelle/index-compatibility.cocci +++ b/contrib/coccinelle/index-compatibility.cocci @@ -94,6 +94,9 @@ identifier ACT = active_cache_tree; | - cache_name_pos + index_name_pos +| +- update_main_cache_tree ++ cache_tree_update ) ( + &the_index, |