From 85a4efcc45312f022111907d82c5cc4ee3bdbb73 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Mon, 30 Jan 2017 23:52:39 +0100 Subject: new srcd.works/go-git.v4 path --- cache/common.go | 2 +- cache/object.go | 2 +- cache/object_test.go | 2 +- cache/queue.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'cache') diff --git a/cache/common.go b/cache/common.go index bd2f1c3..33fb2bc 100644 --- a/cache/common.go +++ b/cache/common.go @@ -1,6 +1,6 @@ package cache -import "gopkg.in/src-d/go-git.v4/plumbing" +import "srcd.works/go-git.v4/plumbing" const ( Byte = 1 << (iota * 10) diff --git a/cache/object.go b/cache/object.go index cd57030..47e390b 100644 --- a/cache/object.go +++ b/cache/object.go @@ -1,6 +1,6 @@ package cache -import "gopkg.in/src-d/go-git.v4/plumbing" +import "srcd.works/go-git.v4/plumbing" const ( initialQueueSize = 20 diff --git a/cache/object_test.go b/cache/object_test.go index 91aba8f..7d00970 100644 --- a/cache/object_test.go +++ b/cache/object_test.go @@ -4,7 +4,7 @@ import ( "io" "testing" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" . "gopkg.in/check.v1" ) diff --git a/cache/queue.go b/cache/queue.go index 85413e0..8c6d7d3 100644 --- a/cache/queue.go +++ b/cache/queue.go @@ -1,6 +1,6 @@ package cache -import "gopkg.in/src-d/go-git.v4/plumbing" +import "srcd.works/go-git.v4/plumbing" // queue is a basic FIFO queue based on a circular list that resize as needed. type queue struct { -- cgit