Merge pull request #798 from Quasilyte/patch-1

use type switch instead of if/else
main
Audrius Butkevicius 5 years ago committed by GitHub
commit e229212769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -495,11 +495,12 @@ func (a Author) String() string {
// it's an ActionFunc or a func with the legacy signature for Action, the func
// is run!
func HandleAction(action interface{}, context *Context) (err error) {
if a, ok := action.(ActionFunc); ok {
switch a := action.(type) {
case ActionFunc:
return a(context)
} else if a, ok := action.(func(*Context) error); ok {
case func(*Context) error:
return a(context)
} else if a, ok := action.(func(*Context)); ok { // deprecated function signature
case func(*Context): // deprecated function signature
a(context)
return nil
}

Loading…
Cancel
Save