Differences From Artifact [d21bf4e040]:
- File src/OFMutableZIPArchiveEntry.m — part of check-in [9f409b2ee0] at 2022-08-24 19:54:34 on branch trunk — OF*ArchiveEntry: Move inits to mutable class (user: js, size: 4207) [annotate] [blame] [check-ins using]
To Artifact [5de5ffdaad]:
- File
src/OFMutableZIPArchiveEntry.m
— part of check-in
[94c326ab78]
at
2022-08-27 20:33:53
on branch trunk
— OFZIPArchiveEntry: Make (un)compressedSize ull
This is for consistency with OFTarArchiveEntry and OFLHAArchiveEntry. (user: js, size: 4227) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
138 139 140 141 142 143 144 | - (void)setCompressionMethod: (OFZIPArchiveEntryCompressionMethod)compressionMethod { _compressionMethod = compressionMethod; } | | | | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | - (void)setCompressionMethod: (OFZIPArchiveEntryCompressionMethod)compressionMethod { _compressionMethod = compressionMethod; } - (void)setCompressedSize: (unsigned long long)compressedSize { _compressedSize = compressedSize; } - (void)setUncompressedSize: (unsigned long long)uncompressedSize { _uncompressedSize = uncompressedSize; } - (void)setCRC32: (uint32_t)CRC32 { _CRC32 = CRC32; |
︙ | ︙ |