1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

Removed unnecessary lines in wincred_windows.go

Those lines seem to be left from the last merge.
They cause build errors on Windows.

Signed-off-by: Daniel Joos <daniel@joosweb.de>
This commit is contained in:
Daniel Joos
2016-09-07 09:28:21 +02:00
parent a994ca1d54
commit cfbce1c845
-2
View File
@@ -41,8 +41,6 @@ func (h Wincred) Get(serverURL string) (string, string, error) {
// List returns the stored URLs and corresponding usernames.
func (h Wincred) List() (map[string]string, error) {
creds, err := winc.List()
paths := make([]string, len(creds))
accts := make([]string, len(creds))
if err != nil {
return nil, err
}