convert switch to if

pull/256/head
joeybloggs 8 years ago
parent 6765805f88
commit 1714ba2b67
  1. 8
      struct_level.go

@ -113,8 +113,7 @@ func (v *validate) ReportError(field interface{}, fieldName, structFieldName, ta
v.str2 = v.str1 v.str2 = v.str1
} }
switch kind { if kind == reflect.Invalid {
case reflect.Invalid:
v.errs = append(v.errs, v.errs = append(v.errs,
&fieldError{ &fieldError{
@ -128,8 +127,8 @@ func (v *validate) ReportError(field interface{}, fieldName, structFieldName, ta
kind: kind, kind: kind,
}, },
) )
return
default: }
v.errs = append(v.errs, v.errs = append(v.errs,
&fieldError{ &fieldError{
@ -145,7 +144,6 @@ func (v *validate) ReportError(field interface{}, fieldName, structFieldName, ta
typ: fv.Type(), typ: fv.Type(),
}, },
) )
}
} }
// ReportValidationErrors reports ValidationErrors obtained from running validations within the Struct Level validation. // ReportValidationErrors reports ValidationErrors obtained from running validations within the Struct Level validation.

Loading…
Cancel
Save