Overview
Comment: | OFZIPArchiveEntry: More elaborate -[description]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7d10ec24b0cd9b8379a3291f5714b62e |
User & Date: | js on 2013-10-29 09:55:21 |
Other Links: | manifest | tags |
Context
2013-10-29
| ||
10:09 | OFDeflateStream: Minor improvements. check-in: f91dbd8975 user: js tags: trunk | |
09:55 | OFZIPArchiveEntry: More elaborate -[description]. check-in: 7d10ec24b0 user: js tags: trunk | |
09:55 | PLATFORMS.md: Add x86_64 to OpenBSD, 10.9 to OS X. check-in: c45bc07d2d user: js tags: trunk | |
Changes
Modified src/OFZIPArchiveEntry.m from [440732d641] to [45871583e7].
︙ | ︙ | |||
146 147 148 149 150 151 152 | void *pool = objc_autoreleasePoolPush(); OFDate *modificationDate = [self modificationDate]; OFString *ret; ret = [[OFString alloc] initWithFormat: @"<%@: %p\n" @"\tFile name = %@\n" @"\tFile comment = %@\n" | > > | | | | | | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | void *pool = objc_autoreleasePoolPush(); OFDate *modificationDate = [self modificationDate]; OFString *ret; ret = [[OFString alloc] initWithFormat: @"<%@: %p\n" @"\tFile name = %@\n" @"\tFile comment = %@\n" @"\tGeneral purpose bit flag = %u\n" @"\tCompression method = %u\n" @"\tCompressed size = %ju\n" @"\tUncompressed size = %ju\n" @"\tModification date = %@\n" @"\tCRC32 = %" @PRIu32 @"\n" @"\tExtra field = %@\n" @"}", [self class], self, _fileName, _fileComment, _generalPurposeBitFlag, _compressionMethod, (intmax_t)_compressedSize, (intmax_t)_uncompressedSize, modificationDate, _CRC32, _extraField]; objc_autoreleasePoolPop(pool); return [ret autorelease]; } - (uint16_t)OF_madeWithVersion |
︙ | ︙ |