Now that no callers of 'find_pack_revindex()' remain, remove the function's declaration and implementation entirely. Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> --- pack-revindex.c | 15 --------------- pack-revindex.h | 2 -- 2 files changed, 17 deletions(-) diff --git a/pack-revindex.c b/pack-revindex.c index 6d86a85208..4e42238906 100644 --- a/pack-revindex.c +++ b/pack-revindex.c @@ -189,21 +189,6 @@ int find_revindex_position(struct packed_git *p, off_t ofs) return -1; } -struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs) -{ - int pos; - - if (load_pack_revindex(p)) - return NULL; - - pos = find_revindex_position(p, ofs); - - if (pos < 0) - return NULL; - - return p->revindex + pos; -} - int offset_to_pack_pos(struct packed_git *p, off_t ofs, uint32_t *pos) { int ret; diff --git a/pack-revindex.h b/pack-revindex.h index 256c0a9106..07c1a7a3c8 100644 --- a/pack-revindex.h +++ b/pack-revindex.h @@ -11,8 +11,6 @@ struct revindex_entry { int load_pack_revindex(struct packed_git *p); int find_revindex_position(struct packed_git *p, off_t ofs); -struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs); - int offset_to_pack_pos(struct packed_git *p, off_t ofs, uint32_t *pos); uint32_t pack_pos_to_index(struct packed_git *p, uint32_t pos); off_t pack_pos_to_offset(struct packed_git *p, uint32_t pos); -- 2.30.0.138.g6d7191ea01