diff options
author | Matthew Plough <matt.plough@gmail.com> | 2015-06-30 16:48:47 -0400 |
---|---|---|
committer | Matthew Plough <matt.plough@gmail.com> | 2015-06-30 16:48:47 -0400 |
commit | 9126ccac969a8da85992f5e3a67b292e59d4d7d0 (patch) | |
tree | 3d0698f1b4ece36b5bf920b65e2541d6b4e0ee26 /src/fetch.h | |
parent | 2f60073dc58cc598a2193ee2cfecc717073f2ccc (diff) | |
download | libgit2-9126ccac969a8da85992f5e3a67b292e59d4d7d0.tar.gz |
Fix #3093 - remove declaration of unused function git_fetch__download_pack
Function was added in commit 2c982daa2eec64b80c7940bfe1142295bd72edd8 on October 5, 2011,
and removed in commit 41fb1ca0ec51ad1d2a14b911aab3215e42965d1b on October 29, 2012.
Given the length of time it's gone unused, it's safe to remove now.
Diffstat (limited to 'src/fetch.h')
-rw-r--r-- | src/fetch.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/fetch.h b/src/fetch.h index aa2a87715..0412d4e44 100644 --- a/src/fetch.h +++ b/src/fetch.h @@ -13,13 +13,6 @@ int git_fetch_negotiate(git_remote *remote, const git_fetch_options *opts); int git_fetch_download_pack(git_remote *remote, const git_remote_callbacks *callbacks); -int git_fetch__download_pack( - git_transport *t, - git_repository *repo, - git_transfer_progress *stats, - git_transfer_progress_cb progress_cb, - void *progress_payload); - int git_fetch_setup_walk(git_revwalk **out, git_repository *repo); #endif |