Remove redundant aliases

This commit is contained in:
Chris Bednarski 2015-06-10 14:07:13 -07:00
parent e294db8ede
commit 3ac74bbae8
1 changed files with 7 additions and 7 deletions

View File

@ -4,17 +4,17 @@ package main
import (
"compress/flate"
gzip "compress/gzip"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"fmt"
"os"
"runtime"
"testing"
bgzf "github.com/biogo/hts/bgzf"
pgzip "github.com/klauspost/pgzip"
lz4 "github.com/pierrec/lz4"
"github.com/biogo/hts/bgzf"
"github.com/klauspost/pgzip"
"github.com/pierrec/lz4"
)
type Compressor struct {
@ -174,7 +174,7 @@ func (c *Compressor) BenchmarkPGZIPReader(b *testing.B) {
func (c *Compressor) BenchmarkLZ4Writer(b *testing.B) {
cw := lz4.NewWriter(c.w)
// cw.Header.HighCompression = true
// cw.Header.HighCompression = true
cw.Header.NoChecksum = true
b.ResetTimer()