remove unused code snippet

This commit is contained in:
Johannes Kimmel 2021-12-14 10:19:59 +01:00
parent 931e2ca8a9
commit ce4c21154b
1 changed files with 0 additions and 15 deletions

15
main.go
View File

@ -101,21 +101,6 @@ func run(opt options) error {
if s.Err() != nil {
fmt.Println(err)
}
//{
// var bbuf bytes.Buffer
// lzww := lzw.NewWriter(&bbuf, lzw.LSB, 8)
// lzww.Write(b[:n])
// lzww.Close()
// fmt.Println(n, len(bbuf.Bytes()))
//}
//{
// var bbuf bytes.Buffer
// gzw, _ := gzip.NewWriterLevel(&bbuf, 9)
// gzw.Write(b[:n])
// gzw.Close()
// fmt.Println(n, len(bbuf.Bytes()))
//}
}
}