diff options
| author | Russ Cox <rsc@golang.org> | 2011-09-26 18:33:13 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-09-26 18:33:13 -0400 |
| commit | 6c230fbc6710b80982b3082064292fefae4a4790 (patch) | |
| tree | 1e026230d3c2f5d62f5c54f718f16c7e4dac44a3 /src/pkg/index/suffixarray | |
| parent | a8a18f6566dd4af3335a587d10cec77f6c5a3e90 (diff) | |
| download | go-6c230fbc6710b80982b3082064292fefae4a4790.tar.xz | |
regexp: move to old/regexp, replace with exp/regexp
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5127042
Diffstat (limited to 'src/pkg/index/suffixarray')
| -rw-r--r-- | src/pkg/index/suffixarray/suffixarray.go | 2 | ||||
| -rw-r--r-- | src/pkg/index/suffixarray/suffixarray_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/index/suffixarray/suffixarray.go b/src/pkg/index/suffixarray/suffixarray.go index cff7daa9d5..4747ba9907 100644 --- a/src/pkg/index/suffixarray/suffixarray.go +++ b/src/pkg/index/suffixarray/suffixarray.go @@ -18,10 +18,10 @@ package suffixarray import ( "bytes" - "exp/regexp" "gob" "io" "os" + "regexp" "sort" ) diff --git a/src/pkg/index/suffixarray/suffixarray_test.go b/src/pkg/index/suffixarray/suffixarray_test.go index aeac9770c4..ec8796d7a9 100644 --- a/src/pkg/index/suffixarray/suffixarray_test.go +++ b/src/pkg/index/suffixarray/suffixarray_test.go @@ -6,8 +6,8 @@ package suffixarray import ( "bytes" - "exp/regexp" "rand" + "regexp" "sort" "strings" "testing" |
