fixed-length arrays cleanup

This commit is contained in:
Jae Kwon
2015-07-18 17:19:47 -07:00
parent dc7b912881
commit 8d1e176180
6 changed files with 39 additions and 52 deletions

View File

@ -670,7 +670,6 @@ func readReflectJSON(rv reflect.Value, rt reflect.Type, o interface{}, err *erro
return
}
log.Debug("Read bytearray", "bytes", buf)
reflect.Copy(rv, reflect.ValueOf(buf))
} else {
oSlice, ok := o.([]interface{})