Differences From Artifact [273e41aca8]:
- File
src/exceptions/OFConditionBroadcastFailedException.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: 1492) [annotate] [blame] [check-ins using]
To Artifact [342d177e68]:
- File
src/exceptions/OFConditionBroadcastFailedException.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: 1495) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
63 64 65 66 67 68 69 | { return [OFString stringWithFormat: @"Broadcasting a condition of type %@ failed!", _inClass]; } - (OFCondition*)condition { | | | 63 64 65 66 67 68 69 70 71 72 | { return [OFString stringWithFormat: @"Broadcasting a condition of type %@ failed!", _inClass]; } - (OFCondition*)condition { OF_GETTER(_condition, false) } @end |