ObjFW  Diff

Differences From Artifact [88cab493bc]:

To Artifact [a5961f13a9]:


96
97
98
99
100
101
102
103
104


105
106
107
108
109
110
111
112
96
97
98
99
100
101
102


103
104
105
106
107
108
109
110
111
112







-
-
+
+








- copy
{
	return [self retain];
}

- mutableCopy
{
	return [OFMutablePair pairWithFirstObject: _firstObject
				     secondObject: _secondObject];
	return [[OFMutablePair alloc] initWithFirstObject: _firstObject
					     secondObject: _secondObject];
}

- (OFString *)description
{
	return [OFString stringWithFormat: @"<<%@, %@>>",
					   _firstObject, _secondObject];
}
@end