Skip to content

Commit

Permalink
Switch deflate implementation
Browse files Browse the repository at this point in the history
From compress/flate to github.com/klauspost/compress/flate. Literally
just an import swap, everything else is identical.
  • Loading branch information
bodgit committed May 11, 2022
1 parent d27af3f commit 40f1116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/deflate/reader.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package deflate

import (
"compress/flate"
"errors"
"io"
"sync"

"github.com/bodgit/sevenzip/internal/util"
"github.com/klauspost/compress/flate"
)

//nolint:gochecknoglobals
Expand Down

0 comments on commit 40f1116

Please sign in to comment.