ObjFW  Diff

Differences From Artifact [7266c82110]:

To Artifact [69c2e4795d]:


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

@implementation OFHTTPCookieManager
+ (instancetype)manager
{
	return [[[self alloc] init] autorelease];
}

- init
{
	self = [super init];

	@try {
		_cookies = [[OFMutableArray alloc] init];
	} @catch (id e) {
		[self release];







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

@implementation OFHTTPCookieManager
+ (instancetype)manager
{
	return [[[self alloc] init] autorelease];
}

- (instancetype)init
{
	self = [super init];

	@try {
		_cookies = [[OFMutableArray alloc] init];
	} @catch (id e) {
		[self release];