ObjFW  Diff

Differences From Artifact [e6dfde16d7]:

To Artifact [b23fb7a66d]:


163
164
165
166
167
168
169
170

171
172
173
174

175
176
177
178
179
180
163
164
165
166
167
168
169

170
171
172
173

174
175
176
177
178
179
180







-
+



-
+






	OFString *indentedHeaders, *ret;

	indentedHeaders = [[_headers description]
	    stringByReplacingOccurrencesOfString: @"\n"
				      withString: @"\n\t"];

	ret = [[OFString alloc] initWithFormat:
	    @"<%@:\n"
	    @"<%@: %p\n"
	    @"\tStatus code = %d\n"
	    @"\tHeaders = %@\n"
	    @">",
	    [self class], _statusCode, indentedHeaders];
	    [self class], self, _statusCode, indentedHeaders];

	objc_autoreleasePoolPop(pool);

	return [ret autorelease];
}
@end