Skip to content

Commit 2870568

Browse files
committed
update proto library to google.golang.org/protobuf
1 parent 7e3e91d commit 2870568

File tree

91 files changed

+103
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+103
-99
lines changed

appengine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"net/http"
1414

15-
"github.com/golang/protobuf/proto"
15+
"google.golang.org/protobuf/proto"
1616

1717
"google.golang.org/appengine/internal"
1818
)

blobstore/blobstore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"strings"
2424
"time"
2525

26-
"github.com/golang/protobuf/proto"
2726
"golang.org/x/text/encoding/htmlindex"
27+
"google.golang.org/protobuf/proto"
2828

2929
"google.golang.org/appengine"
3030
"google.golang.org/appengine/datastore"

blobstore/read.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"os"
1313
"sync"
1414

15-
"github.com/golang/protobuf/proto"
15+
"google.golang.org/protobuf/proto"
1616

1717
"google.golang.org/appengine"
1818
"google.golang.org/appengine/internal"

datastore/datastore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"fmt"
1111
"reflect"
1212

13-
"github.com/golang/protobuf/proto"
13+
"google.golang.org/protobuf/proto"
1414

1515
"google.golang.org/appengine"
1616
"google.golang.org/appengine/internal"

datastore/internal/cloudkey/cloudkey.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"errors"
1313
"strings"
1414

15-
"github.com/golang/protobuf/proto"
1615
cloudpb "google.golang.org/appengine/datastore/internal/cloudpb"
16+
"google.golang.org/protobuf/proto"
1717
)
1818

1919
/////////////////////////////////////////////////////////////////////

datastore/internal/cloudpb/entity.pb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package cloudpb
1010
import (
1111
"fmt"
1212

13-
"github.com/golang/protobuf/proto"
13+
"google.golang.org/protobuf/proto"
1414
)
1515

1616
// A partition ID identifies a grouping of entities. The grouping is always

datastore/key.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"strconv"
1515
"strings"
1616

17-
"github.com/golang/protobuf/proto"
17+
"google.golang.org/protobuf/proto"
1818

1919
"google.golang.org/appengine/internal"
2020
pb "google.golang.org/appengine/internal/datastore"

datastore/load.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/golang/protobuf/proto"
1413
"google.golang.org/appengine"
1514
pb "google.golang.org/appengine/internal/datastore"
15+
"google.golang.org/protobuf/proto"
1616
)
1717

1818
var (

datastore/load_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"reflect"
99
"testing"
1010

11-
proto "github.com/golang/protobuf/proto"
1211
pb "google.golang.org/appengine/internal/datastore"
12+
proto "google.golang.org/protobuf/proto"
1313
)
1414

1515
type Simple struct {

datastore/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"reflect"
1414
"strings"
1515

16-
"github.com/golang/protobuf/proto"
16+
"google.golang.org/protobuf/proto"
1717

1818
"google.golang.org/appengine/internal"
1919
pb "google.golang.org/appengine/internal/datastore"

0 commit comments

Comments
 (0)