On 10/28/2015 03:14 AM, David Turner wrote: > From: Ronnie Sahlberg <sahlb...@google.com> > > Signed-off-by: Ronnie Sahlberg <sahlb...@google.com> > Signed-off-by: Junio C Hamano <gits...@pobox.com> > Signed-off-by: David Turner <dtur...@twopensource.com> > --- > refs-be-files.c | 82 > --------------------------------------------------------- > refs.c | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 81 insertions(+), 82 deletions(-) > > diff --git a/refs-be-files.c b/refs-be-files.c > index c5cc7e7..d04a9d2 100644 > --- a/refs-be-files.c > +++ b/refs-be-files.c > [...] > @@ -1950,37 +1933,6 @@ int for_each_ref_in_submodule(const char *submodule, > const char *prefix, > { > return do_for_each_ref(get_ref_cache(submodule), prefix, fn, > strlen(prefix), 0, cb_data); > } > - > -int for_each_tag_ref(each_ref_fn fn, void *cb_data) > -{ > - return for_each_ref_in("refs/tags/", fn, cb_data); > -} > - > -int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void > *cb_data) > -{ > - return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data); > -} > - > -int for_each_branch_ref(each_ref_fn fn, void *cb_data) > -{ > - return for_each_ref_in("refs/heads/", fn, cb_data); > -} > - > -int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, > void *cb_data) > -{ > - return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data); > -} > - > -int for_each_remote_ref(each_ref_fn fn, void *cb_data) > -{ > - return for_each_ref_in("refs/remotes/", fn, cb_data); > -} > - > -int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, > void *cb_data) > -{ > - return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, > cb_data); > -} > - > int for_each_replace_ref(each_ref_fn fn, void *cb_data) > { > return do_for_each_ref(&ref_cache, git_replace_ref_base, fn,
Nit: you deleted one LF too many in the above hunk, leaving no blank line between the function definitions. > [...] Michael -- Michael Haggerty mhag...@alum.mit.edu -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html