ObjFW  Diff

Differences From Artifact [df272a2515]:

To Artifact [312b1063e8]:


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








>
>

|





>
>







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

	[super dealloc];
}

- (id)objectForKey: (id)key
{
	id ret;

	@try {
		ret = [_mapTable valueForKey: key];
	} @catch (OFInvalidArgumentException *e) {
		@throw [OFInvalidArgumentException
		    exceptionWithClass: [self class]
			      selector: _cmd];
	}

	return ret;
}

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