Differences From Artifact [7f6b444bcd]:
- File src/exceptions/OFThreadStillRunningException.m — part of check-in [cc4cb0d824] at 2017-05-02 21:10:33 on branch trunk — exceptions: Add nullability specifiers (user: js, size: 1361) [annotate] [blame] [check-ins using]
To Artifact [c688f113b8]:
- File
src/exceptions/OFThreadStillRunningException.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: 1364) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "OFThreadStillRunningException.h" #import "OFString.h" #import "OFThread.h" @implementation OFThreadStillRunningException @synthesize thread = _thread; | | | | | 19 20 21 22 23 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 |
#import "OFThreadStillRunningException.h"
#import "OFString.h"
#import "OFThread.h"
@implementation OFThreadStillRunningException
@synthesize thread = _thread;
+ (instancetype)exceptionWithThread: (OFThread *)thread
{
return [[[self alloc] initWithThread: thread] autorelease];
}
- initWithThread: (OFThread *)thread
{
self = [super init];
_thread = [thread retain];
return self;
}
- (void)dealloc
{
[_thread release];
[super dealloc];
}
- (OFString *)description
{
if (_thread)
return [OFString stringWithFormat:
@"Deallocation of a thread of type %@ was tried, even "
@"though it was still running!",
[_thread class]];
else
return @"Deallocation of a thread was tried, even though it "
@"was still running!";
}
@end
|