refactor: removing debugging prints lol

This commit is contained in:
Erica Marigold 2024-12-31 06:12:30 +00:00
parent ba82ad4af3
commit 7724af0467
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -298,7 +298,6 @@ function ZipReader.extract(self: ZipReader, entry: ZipEntry, options: Extraction
pos = pos + 30 + nameLength + extraLength
if bit32.band(bitflags, 0x08) ~= 0 then
print("Unknown sizes, trying to find data descriptor")
-- The bit at offset 3 was set, meaning we did not have the file sizes
-- and CRC checksum at the time of the creation of the ZIP. Instead, they
-- were appended after the compressed data chunks in a data descriptor
@ -339,9 +338,6 @@ function ZipReader.extract(self: ZipReader, entry: ZipEntry, options: Extraction
uncompressedSize = buffer.readu32(self.data, descriptorPos + 12)
end
-- print("Compressed:", compressedSize)
-- FIXME: while trying to extract contents of ZipTestData/refzipfiles/normal.zip,
-- the compressed size is TOO LARGE -- 3865074944 -- but zipinfo tells me otherwise
local content = buffer.create(compressedSize)
buffer.copy(content, 0, self.data, pos, compressedSize)