ObjFW  Diff

Differences From Artifact [80f6393652]:

To Artifact [48127745a8]:


37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
}

+ (OFNull *)null
{
	return null;
}

- initWithSerialization: (OFXMLElement *)element
{
	void *pool;

	[self release];

	pool = objc_autoreleasePoolPush();








|







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
}

+ (OFNull *)null
{
	return null;
}

- (instancetype)initWithSerialization: (OFXMLElement *)element
{
	void *pool;

	[self release];

	pool = objc_autoreleasePoolPush();

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
}

- (OFString *)description
{
	return @"<null>";
}

- copy
{
	return self;
}

- (OFXMLElement *)XMLElementBySerializing
{
	void *pool = objc_autoreleasePoolPush();







|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
}

- (OFString *)description
{
	return @"<null>";
}

- (id)copy
{
	return self;
}

- (OFXMLElement *)XMLElementBySerializing
{
	void *pool = objc_autoreleasePoolPush();
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
	uint8_t type = 0xC0;

	return [OFData dataWithItems: &type
			       count: 1];
}

- autorelease
{
	return self;
}

- retain
{
	return self;
}

- (void)release
{
}







|




|







105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
	uint8_t type = 0xC0;

	return [OFData dataWithItems: &type
			       count: 1];
}

- (instancetype)autorelease
{
	return self;
}

- (instancetype)retain
{
	return self;
}

- (void)release
{
}