@@ -39,31 +39,31 @@ } /*! * The name of the cookie. */ -@property (nonatomic, copy) OFString *name; +@property (copy, nonatomic) OFString *name; /*! * The value of the cookie. */ -@property (nonatomic, copy) OFString *value; +@property (copy, nonatomic) OFString *value; /*! * The domain for the cookie. */ -@property (nonatomic, copy) OFString *domain; +@property (copy, nonatomic) OFString *domain; /*! * The path for the cookie. */ -@property (nonatomic, copy) OFString *path; +@property (copy, nonatomic) OFString *path; /*! * The date when the cookie expires. */ -@property OF_NULLABLE_PROPERTY (nonatomic, copy) OFDate *expires; +@property OF_NULLABLE_PROPERTY (copy, nonatomic) OFDate *expires; /*! * Whether the cookie is only to be used with HTTPS. */ @property (nonatomic, getter=isSecure) bool secure;