ObjFW  Diff

Differences From Artifact [a171b7f96b]:

To Artifact [51f87ea44e]:


46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
	[_condition release];

	[super dealloc];
}

- (OFString *)description
{
	if (_condition != nil)
		return [OFString stringWithFormat:
		    @"Deallocation of a condition of type %@ was tried, even "
		    "though a thread was still waiting for it!",
		    _condition.class];
	else
		return @"Deallocation of a condition was tried, even though a "
		    "thread was still waiting for it!";
}
@end







<
|
|
|
|
<
<
<


46
47
48
49
50
51
52

53
54
55
56



57
58
	[_condition release];

	[super dealloc];
}

- (OFString *)description
{

	return [OFString stringWithFormat:
	    @"Deallocation of a condition of type %@ was tried, even though "
	    "a thread was still waiting for it!",
	    _condition.class];



}
@end