Skip to content

Commit

Permalink
Delete unused arg (#2834)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashamelentyev committed Aug 21, 2021
1 parent f3a6b69 commit 527d950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binding/form_mapping.go
Expand Up @@ -210,7 +210,7 @@ func setWithProperType(val string, value reflect.Value, field reflect.StructFiel
case reflect.Int64:
switch value.Interface().(type) {
case time.Duration:
return setTimeDuration(val, value, field)
return setTimeDuration(val, value)
}
return setIntField(val, 64, value)
case reflect.Uint:
Expand Down Expand Up @@ -359,7 +359,7 @@ func setSlice(vals []string, value reflect.Value, field reflect.StructField) err
return nil
}

func setTimeDuration(val string, value reflect.Value, field reflect.StructField) error {
func setTimeDuration(val string, value reflect.Value) error {
d, err := time.ParseDuration(val)
if err != nil {
return err
Expand Down

0 comments on commit 527d950

Please sign in to comment.