clear debug data

This commit is contained in:
Oleh Herych 2017-07-26 18:09:28 +03:00 committed by Lunny Xiao
parent 2ea34841f0
commit 13fe32cc6c
1 changed files with 0 additions and 3 deletions

View File

@ -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),
} }