1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Shengjing Zhu <i@zhsj.me>
Date: Mon, 31 Jul 2017 19:51:16 +0800
Subject: Remove flate.HuffmanOnly
Forwarded: not-needed
This requires golang-github-klauspost-compress-dev 1.1
---
gzip.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gzip.go b/gzip.go
index 9b97a0f..9953044 100644
--- a/gzip.go
+++ b/gzip.go
@@ -31,7 +31,7 @@ const (
BestCompression = flate.BestCompression
DefaultCompression = flate.DefaultCompression
ConstantCompression = flate.ConstantCompression
- HuffmanOnly = flate.HuffmanOnly
+ // HuffmanOnly = flate.HuffmanOnly
)
// A Writer is an io.WriteCloser.
|