aboutsummaryrefslogtreecommitdiff
path: root/imports
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-11-10 08:50:40 +1100
committerAndrew Gerrand <adg@golang.org>2014-11-10 08:50:40 +1100
commit5ebbcd132f1e9c320204496eeeaac47007339543 (patch)
tree9b27b167abb368ea22603e4a2cd416edbba038dc /imports
parent3191bbae17db7ba9d176ba6a5c7cfb12a9b719b9 (diff)
downloadtools-5ebbcd132f1e9c320204496eeeaac47007339543.tar.gz
go.tools: use golang.org/x/... import paths
Rewrite performed with this command: sed -i '' 's_code.google.com/p/go\._golang.org/x/_g' \ $(grep -lr 'code.google.com/p/go.' *) LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/170920043
Diffstat (limited to 'imports')
-rw-r--r--imports/fix.go2
-rw-r--r--imports/imports.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/imports/fix.go b/imports/fix.go
index 47a98f9..11415cf 100644
--- a/imports/fix.go
+++ b/imports/fix.go
@@ -16,7 +16,7 @@ import (
"strings"
"sync"
- "code.google.com/p/go.tools/astutil"
+ "golang.org/x/tools/astutil"
)
// importToGroup is a list of functions which map from an import path to
diff --git a/imports/imports.go b/imports/imports.go
index 0da153c..b97529e 100644
--- a/imports/imports.go
+++ b/imports/imports.go
@@ -20,7 +20,7 @@ import (
"strconv"
"strings"
- "code.google.com/p/go.tools/astutil"
+ "golang.org/x/tools/astutil"
)
// Options specifies options for processing files.