convox / convox

Unused parameter in function RVV-B0012
Bug risk
Minor
6 days agoa year old
parameter 'app' seems to be unused, consider removing or renaming it as _
 2
 3import "fmt"
 4
 5func (p *Provider) RepositoryAuth(app string) (string, string, error) { 6	return "docker", p.Secret, nil
 7}
 8
parameter 'm' seems to be unused, consider removing or renaming it as _
4	"github.com/convox/convox/pkg/manifest"
5)
6
7func (p *Provider) ManifestValidate(m *manifest.Manifest) error {8	return nil
9}
parameter 'app' seems to be unused, consider removing or renaming it as _
 2
 3import "fmt"
 4
 5func (p *Provider) RepositoryAuth(app string) (string, string, error) { 6	return "docker", p.Secret, nil
 7}
 8
parameter 'm' seems to be unused, consider removing or renaming it as _
4	"github.com/convox/convox/pkg/manifest"
5)
6
7func (p *Provider) ManifestValidate(m *manifest.Manifest) error {8	return nil
9}
parameter 'cur' seems to be unused, consider removing or renaming it as _
 97	return nil
 98}
 99
100func (c *PodController) Update(prev, cur interface{}) error {101	return nil
102}
103