Drop special handling of net.IP type

It's now completely covered by generic TextUnmarshaler case.

Signed-off-by: Pavel Borzenkov <pavel.borzenkov@gmail.com>
This commit is contained in:
Pavel Borzenkov 2018-11-18 14:02:17 +03:00
parent 38f8eb7c6b
commit e1338aeff0
1 changed files with 1 additions and 9 deletions

View File

@ -18,7 +18,6 @@ var (
textUnmarshalerType = reflect.TypeOf([]encoding.TextUnmarshaler{}).Elem() textUnmarshalerType = reflect.TypeOf([]encoding.TextUnmarshaler{}).Elem()
durationType = reflect.TypeOf(time.Duration(0)) durationType = reflect.TypeOf(time.Duration(0))
mailAddressType = reflect.TypeOf(mail.Address{}) mailAddressType = reflect.TypeOf(mail.Address{})
ipType = reflect.TypeOf(net.IP{})
macType = reflect.TypeOf(net.HardwareAddr{}) macType = reflect.TypeOf(net.HardwareAddr{})
) )
@ -80,13 +79,6 @@ func ParseValue(v reflect.Value, s string) error {
} }
v.Set(reflect.ValueOf(*addr)) v.Set(reflect.ValueOf(*addr))
return nil return nil
case net.IP:
ip := net.ParseIP(s)
if ip == nil {
return fmt.Errorf(`invalid IP address: "%s"`, s)
}
v.Set(reflect.ValueOf(ip))
return nil
case net.HardwareAddr: case net.HardwareAddr:
ip, err := net.ParseMAC(s) ip, err := net.ParseMAC(s)
if err != nil { if err != nil {
@ -144,7 +136,7 @@ func CanParse(t reflect.Type) bool {
// Check for other special types // Check for other special types
switch t { switch t {
case durationType, mailAddressType, ipType, macType: case durationType, mailAddressType, macType:
return true return true
} }