Remove redundant returns

pull/1345/head
Craig Davison 2024-12-31 15:26:24 -07:00
parent ca6698b8a1
commit ccb5e7f656
1 changed files with 0 additions and 3 deletions

View File

@ -2182,9 +2182,6 @@ func unwrapAll(err error) (errs []error) {
for _, err := range x.Unwrap() {
errs = append(errs, unwrapAll(err)...)
}
return
default:
return
}
return
}