[PATCH v6 23/27] refs: delete pack_refs() in favor of refs_pack_refs()
From: Nguyễn Thái Ngọc Duy <hidden>
Date: 2017-03-18 02:07:20
Subsystem:
the rest · Maintainer:
Linus Torvalds
It only has one caller, not worth keeping just for convenience. Signed-off-by: Nguyễn Thái Ngọc Duy <redacted> --- builtin/pack-refs.c | 2 +- refs.c | 5 ----- refs.h | 1 - 3 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/builtin/pack-refs.c b/builtin/pack-refs.c
index 39f9a55d16..b106a392a4 100644
--- a/builtin/pack-refs.c
+++ b/builtin/pack-refs.c@@ -17,5 +17,5 @@ int cmd_pack_refs(int argc, const char **argv, const char *prefix) }; if (parse_options(argc, argv, prefix, opts, pack_refs_usage, 0)) usage_with_options(pack_refs_usage, opts); - return pack_refs(flags); + return refs_pack_refs(get_main_ref_store(), flags); }
diff --git a/refs.c b/refs.c
index 5ea28ae128..77a39f8b17 100644
--- a/refs.c
+++ b/refs.c@@ -1605,11 +1605,6 @@ int refs_pack_refs(struct ref_store *refs, unsigned int flags) return refs->be->pack_refs(refs, flags); } -int pack_refs(unsigned int flags) -{ - return refs_pack_refs(get_main_ref_store(), flags); -} - int refs_peel_ref(struct ref_store *refs, const char *refname, unsigned char *sha1) {
diff --git a/refs.h b/refs.h
index 37f4aa8bd5..1a07f9d86f 100644
--- a/refs.h
+++ b/refs.h@@ -297,7 +297,6 @@ void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, * flags: Combination of the above PACK_REFS_* flags. */ int refs_pack_refs(struct ref_store *refs, unsigned int flags); -int pack_refs(unsigned int flags); /* * Flags controlling ref_transaction_update(), ref_transaction_create(), etc.
--
2.11.0.157.gd943d85