ObjFW  Diff

Differences From Artifact [76e6072d35]:

To Artifact [c60f2166d4]:


110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
- copy
{
	return [self retain];
}

- mutableCopy
{
	return [OFMutableTriple tripleWithFirstObject: _firstObject
					 secondObject: _secondObject
					  thirdObject: _thirdObject];
}

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







|
|
|









110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
- copy
{
	return [self retain];
}

- mutableCopy
{
	return [[OFMutableTriple alloc] initWithFirstObject: _firstObject
					       secondObject: _secondObject
						thirdObject: _thirdObject];
}

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