Differences From Artifact [c9eed87446]:
- File
src/exceptions/OFThreadStillRunningException.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: 1483) [annotate] [blame] [check-ins using]
To Artifact [d9f583edf6]:
- File
src/exceptions/OFThreadStillRunningException.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: 1486) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
64 65 66 67 68 69 70 |
return [OFString stringWithFormat:
@"Deallocation of a thread of type %@ was tried, even though it "
@"was still running!", _inClass];
}
- (OFThread*)thread
{
| | | 64 65 66 67 68 69 70 71 72 73 |
return [OFString stringWithFormat:
@"Deallocation of a thread of type %@ was tried, even though it "
@"was still running!", _inClass];
}
- (OFThread*)thread
{
OF_GETTER(_thread, false)
}
@end
|