Commit aa92c318a235cc6a5230682b9c071eb35f9c5f4c

Edward Thomson 2015-06-30T17:38:22

Merge pull request #3278 from mplough/master Fix #3093 - remove declaration of unused function git_fetch__download…

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/src/fetch.h b/src/fetch.h
index aa2a877..0412d4e 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