| Index: common/isolated/algo.go
|
| diff --git a/common/isolated/algo.go b/common/isolated/algo.go
|
| index a2bf2f3ee93bde91bf0a76f3face497f05ffe281..894bdf0e537b27dca5ff2c70e937855380520b65 100644
|
| --- a/common/isolated/algo.go
|
| +++ b/common/isolated/algo.go
|
| @@ -7,13 +7,14 @@
|
| package isolated
|
|
|
| import (
|
| - "compress/zlib"
|
| "crypto/sha1"
|
| "hash"
|
| "io"
|
| "log"
|
| - // https://crbug.com/552697
|
| - //"github.com/klauspost/compress/zlib"
|
| +
|
| + // TODO(tandrii): this library became part of Go 1.7, So, switch back to
|
| + // standard library compress/zlib once we are solidly on Go > 1.7
|
| + "github.com/klauspost/compress/zlib"
|
| )
|
|
|
| var hashLength = sha1.New().Size()
|
|
|