diff --git a/Sources/GzipArchive.swift b/Sources/GzipArchive.swift index 95b4e749..6ccfa886 100644 --- a/Sources/GzipArchive.swift +++ b/Sources/GzipArchive.swift @@ -232,7 +232,7 @@ public class GzipArchive: Archive { return result } - static func processMember(_ pointerData: inout DataWithPointer) throws -> Member { + private static func processMember(_ pointerData: inout DataWithPointer) throws -> Member { let header = try GzipHeader(&pointerData) let memberData = Data(bytes: try Deflate.decompress(&pointerData))