Denmaseno 8 năm trước cách đây
mục cha
commit
79c3e9cd6a
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      dump.go

+ 1 - 3
dump.go

@@ -6,8 +6,6 @@ import (
 	"io"
 	"reflect"
 	"strings"
-
-	util "github.com/senomas/go-util"
 )
 
 const (
@@ -60,7 +58,7 @@ func fdump(w io.Writer, rx int, rd int, tab string, value reflect.Value) {
 		for i, j := 0, 0; i < il && i < MaxFieldLen; i++ {
 			tf := value.Type().Field(i)
 			tag := strings.Split(value.Type().Field(i).Tag.Get("dump"), ",")
-			if !util.InStringSlice("ignore", tag...) {
+			if !InStringSlice("ignore", tag...) {
 				if j > 0 {
 					fmt.Fprintf(w, ",\n%s\"%s\": ", ntab, tf.Name)
 				} else {