@@ -31,18 +31,17 @@ */ @interface OFLHAArchiveEntry: OFObject { OFString *_fileName, *_Nullable _directoryName, *_compressionMethod; uint32_t _compressedSize, _uncompressedSize; - OFDate *_date; + OFDate *_modificationDate; uint8_t _headerLevel; uint16_t _CRC16; uint8_t _operatingSystemIdentifier; OFString *_Nullable _fileComment; OFNumber *_Nullable _mode, *_Nullable _UID, *_Nullable _GID; OFString *_Nullable _owner, *_Nullable _group; - OFDate *_Nullable _modificationDate; OFMutableArray OF_GENERIC(OFData *) *_extensions; OF_RESERVE_IVARS(OFLHAArchiveEntry, 4) } /** @@ -64,13 +63,13 @@ * @brief The uncompressed size of the entry's file. */ @property (readonly, nonatomic) uint32_t uncompressedSize; /** - * @brief The date of the file. + * @brief The modification date of the file. */ -@property (readonly, retain, nonatomic) OFDate *date; +@property (readonly, retain, nonatomic) OFDate *modificationDate; /** * @brief The LHA level of the file. */ @property (readonly, nonatomic) uint8_t headerLevel; @@ -114,16 +113,10 @@ /** * @brief The group of the file. */ @property OF_NULLABLE_PROPERTY (readonly, copy, nonatomic) OFString *group; -/** - * @brief The date of the last modification of the file. - */ -@property OF_NULLABLE_PROPERTY (readonly, retain, nonatomic) - OFDate *modificationDate; - /** * @brief The LHA extensions of the file. */ @property (readonly, copy, nonatomic) OFArray OF_GENERIC(OFData *) *extensions;