clear debug data
This commit is contained in:
parent
2ea34841f0
commit
13fe32cc6c
|
@ -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