@@ -35,11 +35,11 @@ @interface OFLHAArchiveEntry: OFObject { #ifdef OF_LHA_ARCHIVE_ENTRY_M @public #endif - OFString *_fileName, *_Nullable _directoryName, *_method; + OFString *_fileName, *_Nullable _directoryName, *_compressionMethod; uint32_t _compressedSize, _uncompressedSize; OFDate *_date; uint8_t _level; uint16_t _CRC16; uint8_t _operatingSystemIdentifier; @@ -54,13 +54,13 @@ * @brief The file name of the entry. */ @property (readonly, copy, nonatomic) OFString *fileName; /*! - * @brief The method of the entry. + * @brief The compression method of the entry. */ -@property (readonly, copy, nonatomic) OFString *method; +@property (readonly, copy, nonatomic) OFString *compressionMethod; /*! * @brief The compressed size of the entry's file. */ @property (readonly, nonatomic) uint32_t compressedSize;