@@ -55,20 +55,20 @@ @implementation OFHTTPCookie @synthesize name = _name, value = _value, expires = _expires, domain = _domain; @synthesize path = _path, secure = _secure, HTTPOnly = _HTTPOnly; @synthesize extensions = _extensions; -+ (instancetype)cookieWithName: (OFString*)name - value: (OFString*)value ++ (instancetype)cookieWithName: (OFString *)name + value: (OFString *)value { return [[[self alloc] initWithName: name value: value] autorelease]; } -+ (OFArray OF_GENERIC(OFHTTPCookie*)*)cookiesForString: (OFString*)string ++ (OFArray OF_GENERIC(OFHTTPCookie *) *)cookiesForString: (OFString *)string { - OFMutableArray OF_GENERIC(OFHTTPCookie*) *ret = [OFMutableArray array]; + OFMutableArray OF_GENERIC(OFHTTPCookie *) *ret = [OFMutableArray array]; void *pool = objc_autoreleasePoolPush(); const of_unichar_t *characters = [string characters]; size_t length = [string length], last = 0; enum { STATE_PRE_NAME, @@ -247,12 +247,12 @@ - init { OF_INVALID_INIT_METHOD } -- initWithName: (OFString*)name - value: (OFString*)value +- initWithName: (OFString *)name + value: (OFString *)value { self = [super init]; @try { _name = [name copy]; @@ -345,11 +345,11 @@ } return copy; } -- (OFString*)description +- (OFString *)description { OFMutableString *ret = [OFMutableString stringWithFormat: @"%@=%@", _name, _value]; void *pool = objc_autoreleasePoolPush();