about summary refs log tree commit diff
path: root/third_party/git/fetch-negotiator.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/fetch-negotiator.c')
-rw-r--r--third_party/git/fetch-negotiator.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/third_party/git/fetch-negotiator.c b/third_party/git/fetch-negotiator.c
deleted file mode 100644
index d6d685cba0..0000000000
--- a/third_party/git/fetch-negotiator.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "git-compat-util.h"
-#include "fetch-negotiator.h"
-#include "negotiator/default.h"
-#include "negotiator/skipping.h"
-
-void fetch_negotiator_init(struct fetch_negotiator *negotiator,
-			   const char *algorithm)
-{
-	if (algorithm) {
-		if (!strcmp(algorithm, "skipping")) {
-			skipping_negotiator_init(negotiator);
-			return;
-		} else if (!strcmp(algorithm, "default")) {
-			/* Fall through to default initialization */
-		} else {
-			die("unknown fetch negotiation algorithm '%s'", algorithm);
-		}
-	}
-	default_negotiator_init(negotiator);
-}