ObjFW  Diff

Differences From Artifact [eaf81e8b6a]:

To Artifact [ebd625dff3]:


39
40
41
42
43
44
45
46

47
48
49
50
51
52
53
54
39
40
41
42
43
44
45

46
47
48
49
50
51
52
53
54







-
+








- (void)dealloc
{
	[_lock release];

	[super dealloc];
}

- (OFString*)description
- (OFString *)description
{
	if (_lock != nil)
		return [OFString stringWithFormat:
		    @"A lock of type %@ could not be unlocked!", [_lock class]];
	else
		return @"A lock could not be unlocked!";
}
@end