From ff269e3ffef6ff8d53691a867eaae60fd5c08ff7 Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Tue, 27 Jul 2021 16:19:06 +0300 Subject: [PATCH] [ZIP] Rename ByteReader+Zip to LittleEndianByteReader+Zip --- SWCompression.xcodeproj/project.pbxproj | 8 ++++---- ...eReader+Zip.swift => LittleEndianByteReader+Zip.swift} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename Sources/ZIP/{ByteReader+Zip.swift => LittleEndianByteReader+Zip.swift} (100%) diff --git a/SWCompression.xcodeproj/project.pbxproj b/SWCompression.xcodeproj/project.pbxproj index f22297e5..ac5a4d19 100644 --- a/SWCompression.xcodeproj/project.pbxproj +++ b/SWCompression.xcodeproj/project.pbxproj @@ -108,7 +108,7 @@ 06D42DA72067B71000C1A98B /* TestZipExtraField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D42DA62067B71000C1A98B /* TestZipExtraField.swift */; }; 06D95AC11F4C54E0006B46AC /* BZip2+Compress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D95AC01F4C54E0006B46AC /* BZip2+Compress.swift */; }; 06DDB1711F8190D400035BEF /* BZip2+BlockSize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06DDB1701F8190D400035BEF /* BZip2+BlockSize.swift */; }; - 06DE29B81FB7024C0098A761 /* ByteReader+Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06DE29B71FB7024C0098A761 /* ByteReader+Zip.swift */; }; + 06DE29B81FB7024C0098A761 /* LittleEndianByteReader+Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06DE29B71FB7024C0098A761 /* LittleEndianByteReader+Zip.swift */; }; 06E2346C1E068E9600F18798 /* XZArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E2346B1E068E9600F18798 /* XZArchive.swift */; }; 06E234821E06A6C200F18798 /* CheckSums.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E234811E06A6C200F18798 /* CheckSums.swift */; }; 06E6A6391F5C0FBB00D04856 /* CodeLength.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E6A6381F5C0FBB00D04856 /* CodeLength.swift */; }; @@ -334,7 +334,7 @@ 06D42DA62067B71000C1A98B /* TestZipExtraField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestZipExtraField.swift; sourceTree = ""; }; 06D95AC01F4C54E0006B46AC /* BZip2+Compress.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BZip2+Compress.swift"; sourceTree = ""; }; 06DDB1701F8190D400035BEF /* BZip2+BlockSize.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BZip2+BlockSize.swift"; sourceTree = ""; }; - 06DE29B71FB7024C0098A761 /* ByteReader+Zip.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteReader+Zip.swift"; sourceTree = ""; }; + 06DE29B71FB7024C0098A761 /* LittleEndianByteReader+Zip.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LittleEndianByteReader+Zip.swift"; sourceTree = ""; }; 06E2346B1E068E9600F18798 /* XZArchive.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = XZArchive.swift; sourceTree = ""; }; 06E234811E06A6C200F18798 /* CheckSums.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CheckSums.swift; path = Sources/Common/CheckSums.swift; sourceTree = SOURCE_ROOT; }; 06E6A6381F5C0FBB00D04856 /* CodeLength.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CodeLength.swift; path = Sources/Common/CodingTree/CodeLength.swift; sourceTree = SOURCE_ROOT; }; @@ -626,7 +626,7 @@ 061C06471F0E8FF500832F0C /* ZipCentralDirectoryEntry.swift */, 061C06511F0E904600832F0C /* ZipEndOfCentralDirectory.swift */, 06092A231FA4CC3D00DE9FD5 /* CompressionMethod+Zip.swift */, - 06DE29B71FB7024C0098A761 /* ByteReader+Zip.swift */, + 06DE29B71FB7024C0098A761 /* LittleEndianByteReader+Zip.swift */, 0686A6441FA4C47300E89C9E /* FileSystemType+Zip.swift */, ); path = ZIP; @@ -1146,7 +1146,7 @@ 06A172831FA5D3770048A89C /* LZMA2Decoder.swift in Sources */, 061C06571F0E90C800832F0C /* TarError.swift in Sources */, 06A960561F1E7D0B0078E6D1 /* 7zPackInfo.swift in Sources */, - 06DE29B81FB7024C0098A761 /* ByteReader+Zip.swift in Sources */, + 06DE29B81FB7024C0098A761 /* LittleEndianByteReader+Zip.swift in Sources */, 06BAC5941F8CFF28002443F4 /* ZipEntryInfo.swift in Sources */, 0625C49F1FB4B92F00A52C43 /* CompressionMethod+7z.swift in Sources */, 0620F4B31F8E2477001C9B7A /* ContainerEntry.swift in Sources */, diff --git a/Sources/ZIP/ByteReader+Zip.swift b/Sources/ZIP/LittleEndianByteReader+Zip.swift similarity index 100% rename from Sources/ZIP/ByteReader+Zip.swift rename to Sources/ZIP/LittleEndianByteReader+Zip.swift