From a83bdbba9638423786994ac6deaac5313ab5992f Mon Sep 17 00:00:00 2001 From: Simon Schmidt Date: Mon, 16 Apr 2018 09:45:01 +0200 Subject: [PATCH] Import github.com/dataence/bloom instead of github.com/zhenjl/bloom --- partitioned/partitioned.go | 2 +- partitioned/partitioned_test.go | 2 +- scalable/scalable.go | 4 ++-- scalable/scalable_test.go | 6 +++--- standard/standard.go | 2 +- standard/standard_test.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/partitioned/partitioned.go b/partitioned/partitioned.go index 3e07a79..205db27 100644 --- a/partitioned/partitioned.go +++ b/partitioned/partitioned.go @@ -23,7 +23,7 @@ import ( "math" "github.com/willf/bitset" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" ) // PartitionedBloom is a variant implementation of the standard bloom filter. diff --git a/partitioned/partitioned_test.go b/partitioned/partitioned_test.go index dd4b9e9..a759e3b 100644 --- a/partitioned/partitioned_test.go +++ b/partitioned/partitioned_test.go @@ -26,7 +26,7 @@ import ( "testing" "github.com/spaolacci/murmur3" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" "github.com/zhenjl/cityhash" ) diff --git a/scalable/scalable.go b/scalable/scalable.go index 27beb33..8c063c5 100644 --- a/scalable/scalable.go +++ b/scalable/scalable.go @@ -20,8 +20,8 @@ import ( "hash/fnv" "math" - "github.com/zhenjl/bloom" - "github.com/zhenjl/bloom/partitioned" + "github.com/dataence/bloom" + "github.com/dataence/bloom/partitioned" ) // ScalableBloom is an implementation of the Scalable Bloom Filter that "addresses the problem of having diff --git a/scalable/scalable_test.go b/scalable/scalable_test.go index f469c13..8531043 100644 --- a/scalable/scalable_test.go +++ b/scalable/scalable_test.go @@ -26,9 +26,9 @@ import ( "testing" "github.com/spaolacci/murmur3" - "github.com/zhenjl/bloom" - "github.com/zhenjl/bloom/partitioned" - "github.com/zhenjl/bloom/standard" + "github.com/dataence/bloom" + "github.com/dataence/bloom/partitioned" + "github.com/dataence/bloom/standard" "github.com/zhenjl/cityhash" ) diff --git a/standard/standard.go b/standard/standard.go index 7fca4a1..ad46e34 100644 --- a/standard/standard.go +++ b/standard/standard.go @@ -23,7 +23,7 @@ import ( "math" "github.com/willf/bitset" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" ) // StandardBloom is the classic bloom filter implementation diff --git a/standard/standard_test.go b/standard/standard_test.go index bd44f98..bc8606f 100644 --- a/standard/standard_test.go +++ b/standard/standard_test.go @@ -26,7 +26,7 @@ import ( "testing" "github.com/spaolacci/murmur3" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" "github.com/zhenjl/cityhash" )