ObjFW  Diff

Differences From Artifact [01b0a38e38]:

To Artifact [b27a83ce2f]:


27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@implementation OFMutableMapTableDictionary
+ (void)initialize
{
	if (self == [OFMutableMapTableDictionary class])
		[self inheritMethodsFromClass: [OFMapTableDictionary class]];
}

- (void)setObject: (id)object
	   forKey: (id)key
{
	[_mapTable setObject: object
		      forKey: key];
}

- (void)removeObjectForKey: (id)key
{
	[_mapTable removeObjectForKey: key];
}








|
<

|
<







27
28
29
30
31
32
33
34

35
36

37
38
39
40
41
42
43
@implementation OFMutableMapTableDictionary
+ (void)initialize
{
	if (self == [OFMutableMapTableDictionary class])
		[self inheritMethodsFromClass: [OFMapTableDictionary class]];
}

- (void)setObject: (id)object forKey: (id)key

{
	[_mapTable setObject: object forKey: key];

}

- (void)removeObjectForKey: (id)key
{
	[_mapTable removeObjectForKey: key];
}