ObjFW  Diff

Differences From Artifact [ec0f980efe]:

To Artifact [1630a09e19]:


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];
}