remote: simplify anonymous creation

We're down to simply having it be a call to create_internal() so let's
simply do that. The rest of the code is just a distraction.
This commit is contained in:
Carlos Martín Nieto 2015-04-25 00:38:22 +02:00
parent a4b6452a6a
commit 3e20154a9d

View File

@ -313,14 +313,7 @@ on_error:
int git_remote_create_anonymous(git_remote **out, git_repository *repo, const char *url, const char *fetch)
{
int error;
git_remote *remote;
if ((error = create_internal(&remote, repo, NULL, url, fetch)) < 0)
return error;
*out = remote;
return 0;
return create_internal(out, repo, NULL, url, fetch);
}
int git_remote_dup(git_remote **dest, git_remote *source)