From 0fa6f26b0e6ca242088794027c0a32d01e1bc6f9 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Wed, 24 Aug 2016 20:40:33 +0200 Subject: clients/ssh: test fix --- config/config.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index 4cf5f7c..7138952 100644 --- a/config/config.go +++ b/config/config.go @@ -3,8 +3,6 @@ package config import ( "errors" "fmt" - - "gopkg.in/src-d/go-git.v3/clients/common" ) const ( @@ -40,10 +38,6 @@ func (c *RemoteConfig) Validate() error { return ErrRemoteConfigEmptyURL } - if _, err := common.NewEndpoint(c.URL); err != nil { - return err - } - if len(c.Fetch) == 0 { c.Fetch = []RefSpec{RefSpec(fmt.Sprintf(DefaultRefSpec, c.Name))} } -- cgit