clear debug data

This commit is contained in:
Oleh Herych 2017-07-26 18:09:28 +03:00
parent 867ea3e227
commit ec47a11581
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 {
if data == nil {
return nil
}
fmt.Println("--sd", data)
*s = Nullable{
Data: string(data),
}