summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2025-10-23 09:16:18 +0200
committerJunio C Hamano <gitster@pobox.com>2025-11-04 07:32:25 -0800
commit5a5c7359f77ecd1bc4b0e172563161d602f131d3 (patch)
tree74ffff6a18cfd7cea56dbe323f965349ed2bd481 /refs.c
parentfeaaea4c123e6b94ebbdc2135278946ee9cc8eed (diff)
refs: drop `current_ref_iter` hack
In preceding commits we have refactored all callers of `peel_iterated_oid()` to instead use `reference_get_peeled_oid()`. This allows us to thus get rid of the former function. Getting rid of that function is nice, but even nicer is that this also allows us to get rid of the `current_ref_iter` hack. This global variable tracked the currently-active ref iterator so that we can use it to peel an object ID. Now that the peeled object ID is propagated via `struct reference` though we don't have to depend on this hack anymore, which makes for a more robust and easier-to-understand infrastructure. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/refs.c b/refs.c
index 1b1551f981..9d8f0a9ca4 100644
--- a/refs.c
+++ b/refs.c
@@ -2324,16 +2324,6 @@ int refs_optimize(struct ref_store *refs, struct pack_refs_opts *opts)
return refs->be->optimize(refs, opts);
}
-int peel_iterated_oid(struct repository *r, const struct object_id *base, struct object_id *peeled)
-{
- if (current_ref_iter &&
- (current_ref_iter->ref.oid == base ||
- oideq(current_ref_iter->ref.oid, base)))
- return ref_iterator_peel(current_ref_iter, peeled);
-
- return peel_object(r, base, peeled) ? -1 : 0;
-}
-
int reference_get_peeled_oid(struct repository *repo,
const struct reference *ref,
struct object_id *peeled_oid)