ObjFW  Diff

Differences From Artifact [c665c234c4]:

To Artifact [81f708f0c4]:


91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

	[super dealloc];
}

- addToPool: (OFObject*)obj
{
	if (objects == nil)
		objects = [[OFArray alloc] init];

	[objects add: obj];
	[obj release];

	return self;
}








|







91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

	[super dealloc];
}

- addToPool: (OFObject*)obj
{
	if (objects == nil)
		objects = [[OFMutableArray alloc] init];

	[objects add: obj];
	[obj release];

	return self;
}