Differences From Artifact [91b0b01b3c]:
- File
src/exceptions/OFStillLockedException.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 1283) [annotate] [blame] [check-ins using]
To Artifact [af438cc6c1]:
- File
src/exceptions/OFStillLockedException.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1284) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
39 40 41 42 43 44 45 | - (void)dealloc { [_lock release]; [super dealloc]; } | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - (void)dealloc { [_lock release]; [super dealloc]; } - (OFString *)description { if (_lock != nil) return [OFString stringWithFormat: @"Deallocation of a lock of type %@ even though it was " @"still locked!", [_lock class]]; else return @"Deallocation of a lock even though it was still " |
︙ | ︙ |