ObjFW  Diff

Differences From Artifact [ad91789f29]:

To Artifact [8476e8b7af]:


215
216
217
218
219
220
221
222

223
224
225
226
227
228
229
230
215
216
217
218
219
220
221

222

223
224
225
226
227
228
229







-
+
-








- (void)release
{
}

- (void)dealloc
{
	[self doesNotRecognizeSelector: _cmd];
	OF_UNRECOGNIZED_SELECTOR
	abort();

	/* Get rid of a stupid warning */
	[super dealloc];
}
@end

@implementation OFMutableString
447
448
449
450
451
452
453
454

455
456
457
458
459
460
461
462
446
447
448
449
450
451
452

453

454
455
456
457
458
459
460







-
+
-







	[self replaceCharactersInRange: range
			    withString: @""];
}

- (void)replaceCharactersInRange: (of_range_t)range
		      withString: (OFString*)replacement
{
	[self doesNotRecognizeSelector: _cmd];
	OF_UNRECOGNIZED_SELECTOR
	abort();
}

- (void)replaceOccurrencesOfString: (OFString*)string
			withString: (OFString*)replacement
{
	[self replaceOccurrencesOfString: string
			      withString: replacement