Differences From 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]
To Artifact [72ea85d26c]:
- File src/exceptions/OFThreadStillRunningException.m — part of check-in [cc5923d6bb] at 2017-06-04 23:41:38 on branch trunk — Add designated initializer to all exceptions (user: js, size: 1412) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
@implementation OFThreadStillRunningException
@synthesize thread = _thread;
+ (instancetype)exceptionWithThread: (OFThread *)thread
{
return [[[self alloc] initWithThread: thread] autorelease];
}
- initWithThread: (OFThread *)thread
{
self = [super init];
_thread = [thread retain];
| > > > > > | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
@implementation OFThreadStillRunningException
@synthesize thread = _thread;
+ (instancetype)exceptionWithThread: (OFThread *)thread
{
return [[[self alloc] initWithThread: thread] autorelease];
}
- init
{
return [self initWithThread: nil];
}
- initWithThread: (OFThread *)thread
{
self = [super init];
_thread = [thread retain];
|
| ︙ | ︙ |