ObjFW  Diff

Differences From Artifact [01254b0236]:

To Artifact [e8aceda7df]:


525
526
527
528
529
530
531
















532
	return ret;
}

- (OFString*)description
{
	return [self string];
}
















@end







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
	return ret;
}

- (OFString*)description
{
	return [self string];
}

- (OFString*)stringBySerializing
{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	OFString *ret = [[OFString alloc]
	    initWithFormat: @"(class=OFURL)<%@>",
			    [[self string] stringBySerializing]];

	@try {
		[pool release];
	} @finally {
		[ret autorelease];
	}

	return ret;
}
@end