@@ -14,11 +14,10 @@ * file. */ #import "OFObject.h" #import "OFString.h" -#import "OFHTTPCookie.h" OF_ASSUME_NONNULL_BEGIN @class OFURL; @class OFDictionary OF_GENERIC(KeyType, ObjectType); @@ -71,11 +70,10 @@ { OFURL *_URL; of_http_request_method_t _method; of_http_request_protocol_version_t _protocolVersion; OFDictionary OF_GENERIC(OFString *, OFString *) *_headers; - OFArray OF_GENERIC(OFHTTPCookie *) *_cookies; OFDataArray *_body; OFString *_remoteAddress; } /*! @@ -92,16 +90,10 @@ * The headers for the HTTP request. */ @property OF_NULLABLE_PROPERTY (nonatomic, copy) OFDictionary OF_GENERIC(OFString *, OFString *) *headers; -/*! - * The cookies for the HTTP request. - */ -@property OF_NULLABLE_PROPERTY (nonatomic, copy) - OFArray OF_GENERIC(OFHTTPCookie *) *cookies; - /*! * The entity body of the HTTP request. */ @property OF_NULLABLE_PROPERTY (nonatomic, retain) OFDataArray *body;