ObjFW  Diff

Differences From Artifact [4eed3ec6f3]:

To Artifact [7c53691cc2]:


74
75
76
77
78
79
80
81

82
83
84
85
86
87


88
89
90
91
92
93
94
74
75
76
77
78
79
80

81
82
83
84
85


86
87
88
89
90
91
92
93
94







-
+




-
-
+
+








	objc_autoreleasePoolPop(pool);

	return [ret autorelease];
}

@implementation OFURL
+ URLWithString: (OFString*)string
+ (instancetype)URLWithString: (OFString*)string
{
	return [[[self alloc] initWithString: string] autorelease];
}

+ URLWithString: (OFString*)string
  relativeToURL: (OFURL*)URL
+ (instancetype)URLWithString: (OFString*)string
		relativeToURL: (OFURL*)URL
{
	return [[[self alloc] initWithString: string
			       relativeToURL: URL] autorelease];
}

- initWithString: (OFString*)string
{