Differences From Artifact [03a6cbd6da]:
- File
src/exceptions/OFThreadJoinFailedException.m
— part of check-in
[d9ddc4d06e]
at
2013-02-13 23:10:35
on branch trunk
— Don't cache the description of exceptions.
This was pretty pointless, as it's usually only used once. (user: js, size: 1501) [annotate] [blame] [check-ins using]
To Artifact [8fca498969]:
- File
src/exceptions/OFThreadJoinFailedException.m
— part of check-in
[c5ef582958]
at
2013-03-04 17:20:15
on branch trunk
— Replace BOOL with bool.
The only places where BOOL is left are those where they are required by
the ABI. (user: js, size: 1504) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
64 65 66 67 68 69 70 | return [OFString stringWithFormat: @"Joining a thread of class %@ failed! Most likely, another thread " @"already waits for the thread to join.", _inClass]; } - (OFThread*)thread { | | | 64 65 66 67 68 69 70 71 72 73 | 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, false) } @end |