@@ -27,11 +27,11 @@ @interface OFMutableTarArchiveEntry: OFTarArchiveEntry /*! * The file name of the entry. */ -@property (readwrite, nonatomic, copy) OFString *fileName; +@property (readwrite, copy, nonatomic) OFString *fileName; /*! * The mode of the entry. */ @property (readwrite, nonatomic) uint16_t mode; @@ -52,11 +52,11 @@ @property (readwrite, nonatomic) uint64_t size; /*! * The date of the last modification of the file. */ -@property (readwrite, nonatomic, retain) OFDate *modificationDate; +@property (readwrite, retain, nonatomic) OFDate *modificationDate; /*! * The type of the archive entry. * * See @ref of_tar_archive_entry_type_t. @@ -64,22 +64,22 @@ @property (readwrite, nonatomic) of_tar_archive_entry_type_t type; /*! * The file name of the target (for a hard link or symbolic link). */ -@property OF_NULLABLE_PROPERTY (readwrite, nonatomic, copy) +@property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *targetFileName; /*! * The owner of the file. */ -@property OF_NULLABLE_PROPERTY (readwrite, nonatomic, copy) OFString *owner; +@property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *owner; /*! * The group of the file. */ -@property OF_NULLABLE_PROPERTY (readwrite, nonatomic, copy) OFString *group; +@property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *group; /*! * The device major (if the file is a device). */ @property (readwrite, nonatomic) uint32_t deviceMajor;