Skip to content

Commit

Permalink
Rename unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Sep 9, 2024
1 parent 3061360 commit 68b8f79
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions api/pkg/artifact/artifact.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,7 @@ func (nac *NopArtifactClient) GetURLScheme() string {
return ""
}

// ParseURL parses an artifact storage string into a URL struct. The expected
// format of the string is [url-scheme]://[bucket-name]/[object-path]. If the provided
// URL is formatted incorrectly an error will be returned.
func (nac *NopArtifactClient) ParseURL(gsURL string) (*URL, error) {
func (nac *NopArtifactClient) ParseURL(_ string) (*URL, error) {
return nil, nil
}

Expand Down

0 comments on commit 68b8f79

Please sign in to comment.