ObjFW  Diff

Differences From Artifact [712c4645d0]:

To Artifact [145485c3f5]:


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "OFNotImplementedException.h"

#import "autorelease.h"

static OFNull *null = nil;

@implementation OFNull
+ null
{
	if (null != nil)
		return null;

	null = [[self alloc] init];

	return null;







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "OFNotImplementedException.h"

#import "autorelease.h"

static OFNull *null = nil;

@implementation OFNull
+ (OFNull*)null
{
	if (null != nil)
		return null;

	null = [[self alloc] init];

	return null;