ObjFW  Diff

Differences From Artifact [e09b35486d]:

To Artifact [fe80c58b63]:


377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
{
	return [[_attributes copy] autorelease];
}

- (void)setChildren: (OFArray *)children
{
	OFArray *old = _children;
	_children = [children copy];
	[old release];
}

- (OFArray *)children
{
	return [[_children copy] autorelease];
}







|







377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
{
	return [[_attributes copy] autorelease];
}

- (void)setChildren: (OFArray *)children
{
	OFArray *old = _children;
	_children = [children mutableCopy];
	[old release];
}

- (OFArray *)children
{
	return [[_children copy] autorelease];
}