File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
cmd/compile/internal/types2 Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import (
1010 "bytes"
1111 "cmd/compile/internal/syntax"
1212 "fmt"
13- "strconv"
1413 "strings"
1514)
1615
@@ -129,7 +128,7 @@ func (check *Checker) qualifier(pkg *Package) string {
129128 }
130129 // If the same package name was used by multiple packages, display the full path.
131130 if len (check .pkgPathMap [pkg .name ]) > 1 {
132- return strconv . Quote ( pkg .path )
131+ return pkg .path
133132 }
134133 return pkg .name
135134 }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import (
1111 "fmt"
1212 "go/ast"
1313 "go/token"
14- "strconv"
1514 "strings"
1615)
1716
@@ -131,7 +130,7 @@ func (check *Checker) qualifier(pkg *Package) string {
131130 }
132131 // If the same package name was used by multiple packages, display the full path.
133132 if len (check .pkgPathMap [pkg .name ]) > 1 {
134- return strconv . Quote ( pkg .path )
133+ return pkg .path
135134 }
136135 return pkg .name
137136 }
You can’t perform that action at this time.
0 commit comments