fixed sonarqube issues
All checks were successful
Tests / Run Go Tests (push) Successful in 1m34s

This commit is contained in:
2025-10-29 00:17:07 +01:00
parent cf5238f024
commit ac59d2642f
2 changed files with 7 additions and 5 deletions

View File

@@ -20,9 +20,9 @@ func (e *NoValueError) Error() string {
return fmt.Sprintf("No value found for key %s", e.Key)
}
func New(_urlParams url.Values) ParamsParser {
func New(params url.Values) ParamsParser {
return ParamsParser{
urlParams: _urlParams,
urlParams: params,
}
}