Fixed issues with decompress.Decoder

This commit is contained in:
Caleb Gardner
2023-01-05 01:29:23 -06:00
parent 089ef53c8c
commit ce2e45ceec
4 changed files with 4 additions and 13 deletions
+1 -1
View File
@@ -18,5 +18,5 @@ type Resetable interface {
type Decoder interface {
//Decodes a chunk of data all at once.
Decode(in []byte, outSize int) ([]byte, error)
Decode(in []byte) ([]byte, error)
}