diff options
Diffstat (limited to 'pkg/bindings/util')
-rw-r--r-- | pkg/bindings/util/util.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pkg/bindings/util/util.go b/pkg/bindings/util/util.go index 2d65ae9fd..c1961308e 100644 --- a/pkg/bindings/util/util.go +++ b/pkg/bindings/util/util.go @@ -12,8 +12,7 @@ import ( ) func IsSimpleType(f reflect.Value) bool { - switch f.Interface().(type) { - case fmt.Stringer: + if _, ok := f.Interface().(fmt.Stringer); ok { return true } @@ -26,9 +25,8 @@ func IsSimpleType(f reflect.Value) bool { } func SimpleTypeToParam(f reflect.Value) string { - switch cast := f.Interface().(type) { - case fmt.Stringer: - return cast.String() + if s, ok := f.Interface().(fmt.Stringer); ok { + return s.String() } switch f.Kind() { |