ObjFW  Diff

Differences From Artifact [ed882483df]:

To Artifact [872efbe506]:


51
52
53
54
55
56
57
58
59
60
61
62
}

- (OFString *)description
{
	if (_condition != nil)
		return [OFString stringWithFormat:
		    @"Waiting for a condition of type %@ failed!",
		    [_condition class]];
	else
		return @"Waiting for a condition failed!";
}
@end







|




51
52
53
54
55
56
57
58
59
60
61
62
}

- (OFString *)description
{
	if (_condition != nil)
		return [OFString stringWithFormat:
		    @"Waiting for a condition of type %@ failed!",
		    _condition.class];
	else
		return @"Waiting for a condition failed!";
}
@end