diff options
author | Brandon Williams <bmwill@google.com> | 2018-05-17 00:58:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-17 23:19:43 +0200 |
commit | 860fdf1e6ebd767cf702d952e2dcdccd86e7a208 (patch) | |
tree | 354a92ac8ad15ae0e7b8bb8d967a445fdf845f8d /refspec.h | |
parent | fetch: convert refmap to use struct refspec (diff) | |
download | git-860fdf1e6ebd767cf702d952e2dcdccd86e7a208.tar.xz git-860fdf1e6ebd767cf702d952e2dcdccd86e7a208.zip |
refspec: remove the deprecated functions
Now that there are no callers of 'parse_push_refspec()',
'parse_fetch_refspec()', and 'free_refspec()', remove these
functions.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refspec.h')
-rw-r--r-- | refspec.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -14,11 +14,6 @@ struct refspec_item { char *dst; }; -struct refspec_item *parse_fetch_refspec(int nr_refspec, const char **refspec); -struct refspec_item *parse_push_refspec(int nr_refspec, const char **refspec); - -void free_refspec(int nr_refspec, struct refspec_item *refspec); - #define REFSPEC_FETCH 1 #define REFSPEC_PUSH 0 |