From 13fe32cc6cf5ae9b3bb033a1c68980636654b0b6 Mon Sep 17 00:00:00 2001 From: Oleh Herych Date: Wed, 26 Jul 2017 18:09:28 +0300 Subject: [PATCH] clear debug data --- types_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/types_test.go b/types_test.go index 21931762..222c4f80 100644 --- a/types_test.go +++ b/types_test.go @@ -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), }