From dc2dbdbb0235938cea6413d61d7632df5b9dd952 Mon Sep 17 00:00:00 2001 From: Juan Batiz-Benet Date: Wed, 8 Oct 2014 04:17:49 -0700 Subject: [PATCH] vendor things cc @whyrusleeping --- importer/dagwriter/dagmodifier.go | 2 +- importer/format/format.go | 2 +- importer/format/format_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/importer/dagwriter/dagmodifier.go b/importer/dagwriter/dagmodifier.go index c8a5bbc44..5ceb067d8 100644 --- a/importer/dagwriter/dagmodifier.go +++ b/importer/dagwriter/dagmodifier.go @@ -4,7 +4,7 @@ import ( "bytes" "errors" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" imp "github.com/jbenet/go-ipfs/importer" ft "github.com/jbenet/go-ipfs/importer/format" diff --git a/importer/format/format.go b/importer/format/format.go index 1fd5fe0f5..19be4e556 100644 --- a/importer/format/format.go +++ b/importer/format/format.go @@ -5,7 +5,7 @@ package format import ( "errors" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" ) func FromBytes(data []byte) (*PBData, error) { diff --git a/importer/format/format_test.go b/importer/format/format_test.go index 06194aefc..bd234d7a6 100644 --- a/importer/format/format_test.go +++ b/importer/format/format_test.go @@ -3,7 +3,7 @@ package format import ( "testing" - "code.google.com/p/goprotobuf/proto" + "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto" ) func TestMultiBlock(t *testing.T) {