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
@@ -129,7 +128,7 @@ func (check *Checker) qualifier(pkg *Package) string {
129
128
}
130
129
// If the same package name was used by multiple packages, display the full path.
131
130
if len (check .pkgPathMap [pkg .name ]) > 1 {
132
- return strconv . Quote ( pkg .path )
131
+ return pkg .path
133
132
}
134
133
return pkg .name
135
134
}
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
@@ -131,7 +130,7 @@ func (check *Checker) qualifier(pkg *Package) string {
131
130
}
132
131
// If the same package name was used by multiple packages, display the full path.
133
132
if len (check .pkgPathMap [pkg .name ]) > 1 {
134
- return strconv . Quote ( pkg .path )
133
+ return pkg .path
135
134
}
136
135
return pkg .name
137
136
}
You can’t perform that action at this time.
0 commit comments