ObjFW  Diff

Differences From Artifact [1398fa6a7a]:

To Artifact [03a6cbd6da]:


57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
	[_thread release];

	[super dealloc];
}

- (OFString*)description
{
	if (_description != nil)
		return _description;

	_description = [[OFString alloc] initWithFormat:
	    @"Joining a thread of class %@ failed! Most likely, another thread "
	    @"already waits for the thread to join.", _inClass];

	return _description;
}

- (OFThread*)thread
{
	OF_GETTER(_thread, NO)
}
@end







<
<
|
<


<
<







57
58
59
60
61
62
63


64

65
66


67
68
69
70
71
72
73
	[_thread release];

	[super dealloc];
}

- (OFString*)description
{


	return [OFString stringWithFormat:

	    @"Joining a thread of class %@ failed! Most likely, another thread "
	    @"already waits for the thread to join.", _inClass];


}

- (OFThread*)thread
{
	OF_GETTER(_thread, NO)
}
@end