aboutsummaryrefslogtreecommitdiffstats
path: root/clients/ssh/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/ssh/git_upload_pack.go
parent35ee4d749be21691b78a7465361ad47179fe2eff (diff)
downloadgo-git-d0155564148550167e756e440b5f9ce71c76abb3.tar.gz
clients: removing url from the clients constructor
Diffstat (limited to 'clients/ssh/git_upload_pack.go')
-rw-r--r--clients/ssh/git_upload_pack.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/clients/ssh/git_upload_pack.go b/clients/ssh/git_upload_pack.go
index 4a4021d..09cb5ab 100644
--- a/clients/ssh/git_upload_pack.go
+++ b/clients/ssh/git_upload_pack.go
@@ -42,8 +42,7 @@ type GitUploadPackService struct {
// NewGitUploadPackService initialises a GitUploadPackService.
// TODO: remove this, as the struct is zero-value safe.
-func NewGitUploadPackService(url string) *GitUploadPackService {
- // url ignored
+func NewGitUploadPackService() *GitUploadPackService {
return &GitUploadPackService{}
}