summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2014-10-24 07:39:10 -0700
committerEdward Thomson <ethomson@edwardthomson.com>2014-10-24 07:39:10 -0700
commit27372263a025e9dbd40d357751466575dfc3476f (patch)
tree9960b491dc1cc4d447456067bc8585c88fda138f /include/git2
parent4bb6ffb6bb8ad9d49eb173350be965183cd09c96 (diff)
parent0862f617da08cb371a647b3e454745f3b570de63 (diff)
downloadlibgit2-27372263a025e9dbd40d357751466575dfc3476f.tar.gz
Merge pull request #2644 from libgit2/cmn/remove-supported-url
remote: delete git_remote_supported_url()
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/remote.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h
index 977e9b809..b617a5d18 100644
--- a/include/git2/remote.h
+++ b/include/git2/remote.h
@@ -390,19 +390,6 @@ GIT_EXTERN(int) git_remote_fetch(
const char *reflog_message);
/**
- *
- * Return whether the library supports a particular URL scheme
- *
- * Both the built-in and externally-registered transport lists are
- * searched for a transport which supports the scheme of the given
- * URL.
- *
- * @param url the url to check
- * @return 1 if the url is supported, 0 otherwise
-*/
-GIT_EXTERN(int) git_remote_supported_url(const char* url);
-
-/**
* Get a list of the configured remotes for a repo
*
* The string array must be freed by the user.