From a1562878ba52c1ac1a654b8da779df224bc2464a Mon Sep 17 00:00:00 2001 From: Bion Oren Date: Tue, 11 Aug 2020 13:29:56 -0500 Subject: [PATCH] fixed issue #160 by removing unused old test code --- merge.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/merge.go b/merge.go index 11a8c15..afa84a1 100644 --- a/merge.go +++ b/merge.go @@ -271,11 +271,6 @@ func deepMerge(dst, src reflect.Value, visited map[uintptr]*visit, depth int, co } default: mustSet := (isEmptyValue(dst) || overwrite) && (!isEmptyValue(src) || overwriteWithEmptySrc) - v := fmt.Sprintf("%v", src) - if v == "TestIssue106" { - fmt.Println(mustSet) - fmt.Println(dst.CanSet()) - } if mustSet { if dst.CanSet() { dst.Set(src)