From 4da170b81eef59e84cfa68070a73aea40f98ddbd Mon Sep 17 00:00:00 2001 From: vsemichev Date: Wed, 5 Jun 2024 14:59:24 -0400 Subject: [PATCH] fixes issue #187. attempt #3 --- map.go | 1 - 1 file changed, 1 deletion(-) diff --git a/map.go b/map.go index 9e6a2db..95ccd12 100644 --- a/map.go +++ b/map.go @@ -32,7 +32,6 @@ func isExported(field reflect.StructField) bool { // The map argument tracks comparisons that have already been seen, which allows // short circuiting on recursive types. func deepMap(dst, src reflect.Value, visited map[uintptr]*visit, depth int, config *Config) (err error) { - fmt.Println("In deepMap") overwrite := config.Overwrite if dst.CanAddr() { addr := dst.UnsafeAddr()