refactor: use errors.New to replace fmt.Errorf with no parameters (#19548)

This commit is contained in:
Qt
2024-02-24 21:14:13 +00:00
committed by GitHub
parent 95cc64b2d4
commit aa9ff3d8a7
14 changed files with 43 additions and 34 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
package types_test
import (
"fmt"
"errors"
"runtime"
"testing"
@@ -17,7 +17,7 @@ type errOnMarshal struct {
var _ proto.Message = (*errOnMarshal)(nil)
var errAlways = fmt.Errorf("always erroring")
var errAlways = errors.New("always erroring")
func (eom *errOnMarshal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return nil, errAlways
+5 -4
View File
@@ -1,6 +1,7 @@
package types
import (
"errors"
"fmt"
"reflect"
@@ -138,7 +139,7 @@ type InterfaceRegistryOptions struct {
// NewInterfaceRegistryWithOptions returns a new InterfaceRegistry with the given options.
func NewInterfaceRegistryWithOptions(options InterfaceRegistryOptions) (InterfaceRegistry, error) {
if options.ProtoFiles == nil {
return nil, fmt.Errorf("proto files must be provided")
return nil, errors.New("proto files must be provided")
}
options.SigningOptions.FileResolver = options.ProtoFiles
@@ -284,7 +285,7 @@ func (registry *interfaceRegistry) UnpackAny(any *Any, iface interface{}) error
rv := reflect.ValueOf(iface)
if rv.Kind() != reflect.Ptr {
return fmt.Errorf("UnpackAny expects a pointer")
return errors.New("UnpackAny expects a pointer")
}
rt := rv.Elem().Type()
@@ -366,9 +367,9 @@ func UnpackInterfaces(x interface{}, unpacker AnyUnpacker) error {
type failingAddressCodec struct{}
func (f failingAddressCodec) StringToBytes(string) ([]byte, error) {
return nil, fmt.Errorf("InterfaceRegistry requires a proper address codec implementation to do address conversion")
return nil, errors.New("InterfaceRegistry requires a proper address codec implementation to do address conversion")
}
func (f failingAddressCodec) BytesToString([]byte) (string, error) {
return "", fmt.Errorf("InterfaceRegistry requires a proper address codec implementation to do address conversion")
return "", errors.New("InterfaceRegistry requires a proper address codec implementation to do address conversion")
}