Differences From Artifact [9ae989918f]:
- File
src/exceptions/OFConditionStillWaitingException.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: 1342) [annotate] [blame] [check-ins using]
To Artifact [6747f3c524]:
- File src/exceptions/OFConditionStillWaitingException.m — part of check-in [cc4cb0d824] at 2017-05-02 21:10:33 on branch trunk — exceptions: Add nullability specifiers (user: js, size: 1452) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
24 25 26 27 28 29 30 | @synthesize condition = _condition; + (instancetype)exceptionWithCondition: (OFCondition*)condition { return [[[self alloc] initWithCondition: condition] autorelease]; } | < < < < < > | | > > > > | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | @synthesize condition = _condition; + (instancetype)exceptionWithCondition: (OFCondition*)condition { return [[[self alloc] initWithCondition: condition] autorelease]; } - initWithCondition: (OFCondition*)condition { self = [super init]; _condition = [condition retain]; return self; } - (void)dealloc { [_condition release]; [super dealloc]; } - (OFString*)description { if (_condition != nil) return [OFString stringWithFormat: @"Deallocation of a condition of type %@ was tried, even " "though a thread was still waiting for it!", [_condition class]]; else return @"Deallocation of a condition was tried, even though a " "thread was still waiting for it!"; } @end |