Differences From Artifact [8bbc25a706]:
- File src/exceptions/OFConditionWaitFailedException.m — part of check-in [e40729d406] at 2013-02-12 18:22:15 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 1568) [annotate] [blame] [check-ins using]
To 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]
| ︙ | ︙ | |||
57 58 59 60 61 62 63 |
[_condition release];
[super dealloc];
}
- (OFString*)description
{
| < < | < < < | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
[_condition release];
[super dealloc];
}
- (OFString*)description
{
return [OFString stringWithFormat:
@"Waiting for a condition of type %@ failed!", _inClass];
}
- (OFCondition*)condition
{
OF_GETTER(_condition, NO)
}
@end
|