File tree 2 files changed +2
-4
lines changed
cmd/compile/internal/types2
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import (
10
10
"bytes"
11
11
"cmd/compile/internal/syntax"
12
12
"fmt"
13
- "strconv"
14
13
"strings"
15
14
)
16
15
@@ -110,7 +109,7 @@ func (check *Checker) qualifier(pkg *Package) string {
110
109
}
111
110
// If the same package name was used by multiple packages, display the full path.
112
111
if len (check .pkgPathMap [pkg .name ]) > 1 {
113
- return strconv . Quote ( pkg .path )
112
+ return pkg .path
114
113
}
115
114
return pkg .name
116
115
}
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import (
11
11
"fmt"
12
12
"go/ast"
13
13
"go/token"
14
- "strconv"
15
14
"strings"
16
15
)
17
16
@@ -110,7 +109,7 @@ func (check *Checker) qualifier(pkg *Package) string {
110
109
}
111
110
// If the same package name was used by multiple packages, display the full path.
112
111
if len (check .pkgPathMap [pkg .name ]) > 1 {
113
- return strconv . Quote ( pkg .path )
112
+ return pkg .path
114
113
}
115
114
return pkg .name
116
115
}
You can’t perform that action at this time.
0 commit comments