ObjFW  Diff

Differences From Artifact [6f8779fe47]:

To Artifact [c66bc3b5e1]:


303
304
305
306
307
308
309

310





311
312
313
314
315
316
317
	[_mapTable dealloc];

	[super dealloc];
}

- (id)objectForKey: (id)key
{

	return [_mapTable valueForKey: key];





}

- (size_t)count
{
	return [_mapTable count];
}








>
|
>
>
>
>
>







303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
	[_mapTable dealloc];

	[super dealloc];
}

- (id)objectForKey: (id)key
{
	@try {
		return [_mapTable valueForKey: key];
	} @catch (OFInvalidArgumentException *e) {
		@throw [OFInvalidArgumentException
		    exceptionWithClass: [self class]
			      selector: _cmd];
	}
}

- (size_t)count
{
	return [_mapTable count];
}