aboutsummaryrefslogtreecommitdiff
path: root/tree.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2026-01-09 22:30:20 +0100
committerJunio C Hamano <gitster@pobox.com>2026-01-09 18:36:17 -0800
commita8a50f29aeab6cf3cd848caaa8229ab26d542b80 (patch)
tree170334857c355b72a6460e3786968e6bb0086909 /tree.c
parente61c387a1be8feec8bcb0cf1793893d206eaa2f7 (diff)
downloadgit-a8a50f29aeab6cf3cd848caaa8229ab26d542b80.tar.xz
tree: stop using the_repository
Push the use of the_repository to the remaining callers by turning the compatibility wrappers into macros, whose use still requires USE_THE_REPOSITORY_VARIABLE to be defined. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tree.c b/tree.c
index edcf6a284c..d703ab97c8 100644
--- a/tree.c
+++ b/tree.c
@@ -1,5 +1,3 @@
-#define USE_THE_REPOSITORY_VARIABLE
-
#include "git-compat-util.h"
#include "hex.h"
#include "tree.h"
@@ -185,11 +183,6 @@ int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
return 0;
}
-int parse_tree_gently(struct tree *item, int quiet_on_missing)
-{
- return repo_parse_tree_gently(the_repository, item, quiet_on_missing);
-}
-
int repo_parse_tree_gently(struct repository *r, struct tree *item,
int quiet_on_missing)
{
@@ -219,11 +212,6 @@ void free_tree_buffer(struct tree *tree)
tree->object.parsed = 0;
}
-struct tree *parse_tree_indirect(const struct object_id *oid)
-{
- return repo_parse_tree_indirect(the_repository, oid);
-}
-
struct tree *repo_parse_tree_indirect(struct repository *r,
const struct object_id *oid)
{