取消调试信息

This commit is contained in:
boyce
2019-03-20 10:16:52 +08:00
parent 7a215e6a83
commit ffe2e967f8

View File

@@ -494,13 +494,10 @@ func (slf *DataSetList) UnMarshal(args ...interface{}) error {
for _, out := range args {
v := reflect.ValueOf(out)
fmt.Print(v.Kind())
if v.Kind() != reflect.Ptr {
return errors.New("interface must be a pointer")
}
fmt.Print(v.Kind())
fmt.Print(v.Elem().Kind())
if v.Kind() != reflect.Ptr {
return errors.New("interface must be a pointer")
}