Differences From Artifact [2869a17627]:
- File
src/exceptions/OFStillLockedException.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: 1323) [annotate] [blame] [check-ins using]
To Artifact [509b1a9438]:
- File
src/exceptions/OFStillLockedException.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: 1326) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
51 52 53 54 55 56 57 | return [OFString stringWithFormat: @"Deallocation of a lock of type %@ was tried in class %@, even " @"though it was still locked!", [_lock class], _inClass]; } - (id <OFLocking>)lock { | | | 51 52 53 54 55 56 57 58 59 60 | return [OFString stringWithFormat: @"Deallocation of a lock of type %@ was tried in class %@, even " @"though it was still locked!", [_lock class], _inClass]; } - (id <OFLocking>)lock { OF_GETTER(_lock, false) } @end |