clear debug data
This commit is contained in:
parent
867ea3e227
commit
ec47a11581
|
@ -139,13 +139,10 @@ type Nullable struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Nullable) FromDB(data []byte) error {
|
func (s *Nullable) FromDB(data []byte) error {
|
||||||
|
|
||||||
if data == nil {
|
if data == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println("--sd", data)
|
|
||||||
|
|
||||||
*s = Nullable{
|
*s = Nullable{
|
||||||
Data: string(data),
|
Data: string(data),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue