ObjFW  Diff

Differences From Artifact [9940be49c7]:

To Artifact [5283a9e0e5]:


18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#import "OFNotImplementedException.h"
#import "OFString.h"

#import "common.h"

@implementation OFNotImplementedException
+ exceptionWithClass: (Class)class_
	    selector: (SEL)selector
{
	return [[[self alloc] initWithClass: class_
				   selector: selector] autorelease];
}

- initWithClass: (Class)class_
{







|
|







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#import "OFNotImplementedException.h"
#import "OFString.h"

#import "common.h"

@implementation OFNotImplementedException
+ (instancetype)exceptionWithClass: (Class)class_
			  selector: (SEL)selector
{
	return [[[self alloc] initWithClass: class_
				   selector: selector] autorelease];
}

- initWithClass: (Class)class_
{