aboutsummaryrefslogtreecommitdiffstats
path: root/clients/http/git_upload_pack.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-02-11 12:09:02 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-02-11 12:09:02 +0100
commitd0155564148550167e756e440b5f9ce71c76abb3 (patch)
treecb6f7637286c8236997dc736133bbac4217d5e35 /clients/http/git_upload_pack.go
parent35ee4d749be21691b78a7465361ad47179fe2eff (diff)
downloadgo-git-d0155564148550167e756e440b5f9ce71c76abb3.tar.gz
clients: removing url from the clients constructor
Diffstat (limited to 'clients/http/git_upload_pack.go')
-rw-r--r--clients/http/git_upload_pack.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/clients/http/git_upload_pack.go b/clients/http/git_upload_pack.go
index 4b06c72..2d38d42 100644
--- a/clients/http/git_upload_pack.go
+++ b/clients/http/git_upload_pack.go
@@ -18,8 +18,7 @@ type GitUploadPackService struct {
auth HTTPAuthMethod
}
-func NewGitUploadPackService(url string) *GitUploadPackService {
- // url ignored
+func NewGitUploadPackService() *GitUploadPackService {
return &GitUploadPackService{
Client: http.DefaultClient,
}