Index: service/rawdatastore/datastore_impl.go |
diff --git a/service/rawdatastore/datastore_impl.go b/service/rawdatastore/datastore_impl.go |
index 2c8980442c9733a7dbd6032421c81811e14c9c92..2ea0ae9e161766ff3087f39318f8bee80643eb69 100644 |
--- a/service/rawdatastore/datastore_impl.go |
+++ b/service/rawdatastore/datastore_impl.go |
@@ -7,7 +7,6 @@ |
package rawdatastore |
import ( |
- "errors" |
"fmt" |
"reflect" |
"strconv" |
@@ -16,8 +15,8 @@ import ( |
"time" |
"unicode" |
- "github.com/luci/gae" |
"github.com/luci/gae/service/blobstore" |
+ "github.com/luci/luci-go/common/errors" |
) |
// Entities with more than this many indexed properties will not be saved. |
@@ -60,7 +59,7 @@ func (p *structPLS) Load(propMap PropertyMap) error { |
return err |
} |
- convFailures := gae.MultiError(nil) |
+ convFailures := errors.MultiError(nil) |
t := reflect.Type(nil) |
for name, props := range propMap { |