Differences From Artifact [15401b6dca]:
- File
src/exceptions/OFConditionWaitFailedException.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: 1481) [annotate] [blame] [check-ins using]
To Artifact [6c0165461b]:
- File
src/exceptions/OFConditionWaitFailedException.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: 1484) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
63 64 65 66 67 68 69 |
{
return [OFString stringWithFormat:
@"Waiting for a condition of type %@ failed!", _inClass];
}
- (OFCondition*)condition
{
| | | 63 64 65 66 67 68 69 70 71 72 |
{
return [OFString stringWithFormat:
@"Waiting for a condition of type %@ failed!", _inClass];
}
- (OFCondition*)condition
{
OF_GETTER(_condition, false)
}
@end
|