go: remove unused parameters

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-03-20 13:53:11 +01:00
parent 9e13b0f917
commit a474739ab6

View File

@ -172,7 +172,7 @@ type stubPolicyPatcher struct {
patchErr error
}
func (s stubPolicyPatcher) Patch(ctx context.Context, attestationURL string) error {
func (s stubPolicyPatcher) Patch(_ context.Context, _ string) error {
return s.patchErr
}