mirror of https://github.com/docker/cli.git
cli/trust: remove name for unused args (revive)
These method must implements an interface, but don't use the argument.
cli/trust/trust.go:85:40: unused-parameter: parameter 'u' seems to be unused, consider removing or renaming it as _ (revive)
func (scs simpleCredentialStore) Basic(u *url.URL) (string, string) {
^
cli/trust/trust.go:89:47: unused-parameter: parameter 'u' seems to be unused, consider removing or renaming it as _ (revive)
func (scs simpleCredentialStore) RefreshToken(u *url.URL, service string) string {
^
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit a2d532819d
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
0cfc19830b
commit
c0581e8a38
|
@ -82,16 +82,15 @@ type simpleCredentialStore struct {
|
||||||
auth types.AuthConfig
|
auth types.AuthConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (scs simpleCredentialStore) Basic(u *url.URL) (string, string) {
|
func (scs simpleCredentialStore) Basic(*url.URL) (string, string) {
|
||||||
return scs.auth.Username, scs.auth.Password
|
return scs.auth.Username, scs.auth.Password
|
||||||
}
|
}
|
||||||
|
|
||||||
func (scs simpleCredentialStore) RefreshToken(u *url.URL, service string) string {
|
func (scs simpleCredentialStore) RefreshToken(*url.URL, string) string {
|
||||||
return scs.auth.IdentityToken
|
return scs.auth.IdentityToken
|
||||||
}
|
}
|
||||||
|
|
||||||
func (scs simpleCredentialStore) SetRefreshToken(*url.URL, string, string) {
|
func (scs simpleCredentialStore) SetRefreshToken(*url.URL, string, string) {}
|
||||||
}
|
|
||||||
|
|
||||||
// GetNotaryRepository returns a NotaryRepository which stores all the
|
// GetNotaryRepository returns a NotaryRepository which stores all the
|
||||||
// information needed to operate on a notary repository.
|
// information needed to operate on a notary repository.
|
||||||
|
|
Loading…
Reference in New Issue