drop extraneous log
This commit is contained in:
parent
3a035a19bd
commit
a081287ba6
|
@ -37,8 +37,6 @@ func parseAsTextUnmarshaler(v reflect.Value, s string) (bool, error) {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("parsing into %v: IsNil=%v, CanSet=%v, Kind=%v\n", t, v.IsNil(), v.CanSet(), t.Kind())
|
|
||||||
|
|
||||||
if v.IsNil() && v.CanSet() {
|
if v.IsNil() && v.CanSet() {
|
||||||
switch t.Kind() {
|
switch t.Kind() {
|
||||||
case reflect.Ptr:
|
case reflect.Ptr:
|
||||||
|
|
Loading…
Reference in New Issue