File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,6 @@ func (r Result) QueryImports(filename string) [][]string {
293
293
}
294
294
} else {
295
295
if strings .HasPrefix (q .Ret .Type (), "[]" ) && q .Ret .Type () != "[]byte" {
296
- log .Println (q .Ret .Type (), q .Ret .Name , q .Ret .typ )
297
296
return true
298
297
}
299
298
}
@@ -302,13 +301,11 @@ func (r Result) QueryImports(filename string) [][]string {
302
301
if q .Arg .IsStruct () {
303
302
for _ , f := range q .Arg .Struct .Fields {
304
303
if strings .HasPrefix (f .Type , "[]" ) && f .Type != "[]byte" {
305
- log .Println (f .Type , f .Name )
306
304
return true
307
305
}
308
306
}
309
307
} else {
310
308
if strings .HasPrefix (q .Arg .Type (), "[]" ) && q .Arg .Type () != "[]byte" {
311
- log .Println (q .Arg .Type (), q .Arg .Name , q .Arg .typ )
312
309
return true
313
310
}
314
311
}
You can’t perform that action at this time.
0 commit comments