@@ -19,11 +19,10 @@ #import "OFHTTPResponse.h" #import "OFString.h" #import "OFDictionary.h" #import "OFArray.h" #import "OFDataArray.h" -#import "OFHTTPCookie.h" #import "OFInvalidEncodingException.h" #import "OFInvalidFormatException.h" #import "OFOutOfRangeException.h" #import "OFTruncatedDataException.h" @@ -135,11 +134,11 @@ return ret; } @implementation OFHTTPResponse -@synthesize statusCode = _statusCode, headers = _headers, cookies = _cookies; +@synthesize statusCode = _statusCode, headers = _headers; - init { self = [super init]; @@ -150,11 +149,10 @@ } - (void)dealloc { [_headers release]; - [_cookies release]; [super dealloc]; } - (void)setProtocolVersion: (of_http_request_protocol_version_t)protocolVersion