From 81b8c9df4642328a7d0dc0920f1489748371d275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 30 Mar 2013 04:50:53 +0100 Subject: [PATCH] transport: don't try to export nonexistent function --- include/git2/transport.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/git2/transport.h b/include/git2/transport.h index 783ea51bf..5e9968363 100644 --- a/include/git2/transport.h +++ b/include/git2/transport.h @@ -165,16 +165,6 @@ typedef struct git_transport { */ GIT_EXTERN(int) git_transport_new(git_transport **out, git_remote *owner, const char *url); -/** - * Function which checks to see if a transport could be created for the - * given URL (i.e. checks to see if libgit2 has a transport that supports - * the given URL's scheme) - * - * @param url The URL to check - * @return Zero if the URL is not valid; nonzero otherwise - */ -GIT_EXTERN(int) git_transport_valid_url(const char *url); - /* Signature of a function which creates a transport */ typedef int (*git_transport_cb)(git_transport **out, git_remote *owner, void *param);