bump(github.com/matttproud/golang_protobuf_extensions/ext):ba7d65ac66e9da93a714ca18f6d1bc7a0c09100c

This commit is contained in:
kargakis
2015-03-19 14:26:46 +01:00
parent ddae4ef439
commit 9313512767
5 changed files with 9 additions and 9 deletions

View File

@@ -21,8 +21,8 @@ import (
"testing"
"testing/quick"
. "code.google.com/p/goprotobuf/proto"
. "code.google.com/p/goprotobuf/proto/testdata"
. "github.com/golang/protobuf/proto"
. "github.com/golang/protobuf/proto/testdata"
)
func TestWriteDelimited(t *testing.T) {

View File

@@ -19,7 +19,7 @@ import (
"errors"
"io"
"code.google.com/p/goprotobuf/proto"
"github.com/golang/protobuf/proto"
)
var errInvalidVarint = errors.New("invalid varint32 encountered")

View File

@@ -18,7 +18,7 @@ import (
"encoding/binary"
"io"
"code.google.com/p/goprotobuf/proto"
"github.com/golang/protobuf/proto"
)
// WriteDelimited encodes and dumps a message to the provided writer prefixed

View File

@@ -1,5 +1,5 @@
// Copyright 2010 The Go Authors. All rights reserved.
// http://code.google.com/p/goprotobuf/
// http://github.com/golang/protobuf/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
@@ -30,11 +30,11 @@
package ext
import (
. "code.google.com/p/goprotobuf/proto"
. "code.google.com/p/goprotobuf/proto/testdata"
. "github.com/golang/protobuf/proto"
. "github.com/golang/protobuf/proto/testdata"
)
// FROM https://code.google.com/p/goprotobuf/source/browse/proto/all_test.go.
// FROM https://github.com/golang/protobuf/blob/master/proto/all_test.go.
func initGoTestField() *GoTestField {
f := new(GoTestField)